65 lines
1.9 KiB
JavaScript
65 lines
1.9 KiB
JavaScript
export default {
|
|
root: {
|
|
background: '{content.background}',
|
|
borderColor: '{content.border.color}',
|
|
color: '{content.color}'
|
|
},
|
|
header: {
|
|
background: '{content.background}',
|
|
borderColor: '{content.border.color}',
|
|
color: '{content.color}'
|
|
},
|
|
dropdown: {
|
|
width: '2.5rem',
|
|
borderColor: '{form.field.border.color}',
|
|
hoverBorderColor: '{form.field.border.color}',
|
|
activeBorderColor: '{form.field.border.color}',
|
|
background: '{button.secondary.background}',
|
|
hoverBackground: '{button.secondary.hover.background}',
|
|
activeBackground: '{button.secondary.active.background}',
|
|
color: '{button.secondary.color}',
|
|
hoverColor: '{button.secondary.hover.color}',
|
|
activeColor: '{button.secondary.active.color}'
|
|
},
|
|
viewMonth: {
|
|
hoverBackground: '{content.hover.background}',
|
|
color: '{content.color}',
|
|
hoverColor: '{content.hover.color}'
|
|
},
|
|
viewYear: {
|
|
hoverBackground: '{content.hover.background}',
|
|
color: '{content.color}',
|
|
hoverColor: '{content.hover.color}'
|
|
},
|
|
group: {
|
|
borderColor: '{content.border.color}'
|
|
},
|
|
date: {
|
|
hoverBackground: '{content.hover.background}',
|
|
selectedBackground: '{highlight.background}',
|
|
color: '{content.color}',
|
|
hoverColor: '{content.hover.color}',
|
|
selectedColor: '{highlight.color}'
|
|
},
|
|
buttonbar: {
|
|
borderColor: '{content.border.color}'
|
|
},
|
|
timePicker: {
|
|
borderColor: '{content.border.color}'
|
|
},
|
|
colorScheme: {
|
|
light: {
|
|
today: {
|
|
background: '{surface.200}',
|
|
color: '{surface.900}'
|
|
}
|
|
},
|
|
dark: {
|
|
today: {
|
|
background: '{surface.700}',
|
|
color: '{surface.0}'
|
|
}
|
|
}
|
|
}
|
|
};
|