react-native-full-calendars
Version:
React Native Full Calendar (RNFC) is an intuitive and powerful calendar component library designed for React Native.
23 lines (21 loc) • 475 B
text/typescript
import { Theme } from './type';
export const DEFAULT_THEME: Theme = {
headerDateFormat: 'MMMM yyyy',
dayLabelDateFormat: 'eeeeee',
dayTextForamt: 'd',
disableOpacity: 0.2,
daySelectedStyle: {
backgroundColor: 'rgb(216, 216, 216)',
},
dayTodayTextStyle: {
color: 'white',
},
dayTodayStyle: {
backgroundColor: 'purple',
borderRadius: 20,
},
itemStartMargin: 2,
itemEndMargin: 2,
itemStartBorderRadius: 4,
itemEndBorderRadius: 4,
};