mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-14 13:24:38 +02:00
28 lines
501 B
TypeScript
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",
|
|
},
|
|
});
|