mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
64 lines
2.1 KiB
JavaScript
Vendored
64 lines
2.1 KiB
JavaScript
Vendored
export const theme = {
|
|
common: {
|
|
border: '1px solid #ddd',
|
|
backgroundColor: 'white',
|
|
holiday: {color: '#f54f3d'},
|
|
saturday: {color: '#135de6'},
|
|
dayName: {color: '#333'},
|
|
today: {color: '#009688'},
|
|
gridSelection: {
|
|
backgroundColor: 'rgba(19, 93, 230, 0.1)',
|
|
border: '1px solid #135de6',
|
|
},
|
|
},
|
|
month: {
|
|
dayName: {
|
|
borderLeft: 'none',
|
|
backgroundColor: 'inherit',
|
|
},
|
|
holidayExceptThisMonth: {color: '#f3acac'},
|
|
dayExceptThisMonth: {color: '#bbb'},
|
|
weekend: {backgroundColor: '#fafafa'},
|
|
moreView: {boxShadow: 'none'},
|
|
moreViewTitle: {backgroundColor: '#f4f4f4'},
|
|
},
|
|
week: {
|
|
dayName: {
|
|
borderTop: 'none',
|
|
borderBottom: 'none',
|
|
borderLeft: '1px solid #ddd',
|
|
backgroundColor: 'inherit',
|
|
},
|
|
today: {
|
|
color: '#009688',
|
|
backgroundColor: 'inherit',
|
|
},
|
|
pastDay: {color: '#999'},
|
|
panelResizer: {border: '1px solid #ddd'},
|
|
dayGrid: {borderRight: '1px solid #ddd'},
|
|
dayGridLeft: {
|
|
width: '100px',
|
|
backgroundColor: '',
|
|
borderRight: '1px solid #ddd',
|
|
},
|
|
weekend: {backgroundColor: 'inherit'},
|
|
timeGridLeft: {
|
|
width: '100px',
|
|
backgroundColor: '#fafafa',
|
|
borderRight: '1px solid #ddd',
|
|
},
|
|
timeGridLeftAdditionalTimezone: {backgroundColor: '#fdfdfd'},
|
|
timeGridHourLine: {borderBottom: '1px solid #eee'},
|
|
timeGridHalfHourLine: {borderBottom: '1px dotted #f9f9f9'},
|
|
timeGrid: {borderRight: '1px solid #ddd'},
|
|
nowIndicatorLabel: {color: '#135de6'},
|
|
nowIndicatorPast: {border: '1px solid rgba(19, 93, 230, 0.3)'},
|
|
nowIndicatorBullet: {backgroundColor: '#135de6'},
|
|
nowIndicatorToday: {border: '1px solid #135de6'},
|
|
nowIndicatorFuture: {border: '1px solid #135de6'},
|
|
pastTime: {color: '#999'},
|
|
futureTime: {color: '#333'},
|
|
gridSelection: {color: '#135de6'},
|
|
},
|
|
};
|