Zipline-Android-App/styles/components/datePicker.ts
2025-02-08 21:36:49 +01:00

28 lines
501 B
TypeScript

import { StyleSheet } from "react-native";
export const styles = StyleSheet.create({
calendarTextStyle: {
color: "white",
},
headerTextStyle: {
color: "white",
},
weekDaysTextStyle: {
color: "gray",
},
yearContainerStyle: {
backgroundColor: "transparent",
margin: 5,
borderWidth: 2,
borderColor: "#222c47",
},
monthContainerStyle: {
backgroundColor: "transparent",
margin: 5,
borderWidth: 2,
borderColor: "#222c47",
},
todayTextStyle: {
fontWeight: "bold",
},
});