UNPKG

react-native-toggle-calendar

Version:

Horizontal as well as Grid calendar built on top of react-native-calendars

42 lines (34 loc) 1.54 kB
import {Platform} from 'react-native'; export const foregroundColor = '#ffffff'; export const backgroundColor = '#f4f4f4'; export const separatorColor = '#e8e9ec'; export const processedColor = '#a7e0a3'; export const processingColor = '#ffce5c'; export const failedColor = 'rgba(246, 126, 126,1)'; export const textDefaultColor = '#2d4150'; export const textColor = '#43515c'; export const textLinkColor = '#00adf5'; export const textSecondaryColor = '#7a92a5'; export const textDayFontFamily = 'System'; export const textMonthFontFamily = 'System'; export const textDayHeaderFontFamily = 'System'; export const textMonthFontWeight = '300'; export const textDayFontSize = 16; export const textMonthFontSize = 16; export const textDayHeaderFontSize = 13; export const calendarBackground = foregroundColor; export const textSectionTitleColor = '#b6c1cd'; export const selectedDayBackgroundColor = textLinkColor; export const selectedDayTextColor = foregroundColor; export const todayBackgroundColor = undefined; export const todayTextColor = textLinkColor; export const dayTextColor = textDefaultColor; export const textDisabledColor = '#d9e1e8'; export const dotColor = textLinkColor; export const selectedDotColor = foregroundColor; export const arrowColor = textLinkColor; export const monthTextColor = textDefaultColor; export const agendaDayTextColor = '#7a92a5'; export const agendaDayNumColor = '#7a92a5'; export const agendaTodayColor = textLinkColor; export const agendaKnobColor = Platform.OS === 'ios' ? '#f2F4f5' : '#4ac4f7';