2024-05-13 14:15:43 +00:00
|
|
|
export default {
|
|
|
|
panel: {
|
|
|
|
background: '{content.background}',
|
|
|
|
borderColor: '{content.border.color}',
|
|
|
|
color: '{content.color}',
|
|
|
|
borderRadius: '{content.border.radius}',
|
|
|
|
shadow: '{overlay.popover.shadow}',
|
|
|
|
padding: '{overlay.popover.padding}'
|
|
|
|
},
|
|
|
|
header: {
|
|
|
|
background: '{content.background}',
|
|
|
|
borderColor: '{content.border.color}',
|
|
|
|
color: '{content.color}',
|
|
|
|
padding: '0 0 0.5rem 0',
|
|
|
|
fontWeight: '500',
|
|
|
|
gap: '0.5rem'
|
|
|
|
},
|
|
|
|
title: {
|
|
|
|
gap: '0.5rem',
|
|
|
|
fontWeight: '500'
|
|
|
|
},
|
|
|
|
dropdown: {
|
|
|
|
width: '2.5rem',
|
2024-05-14 22:53:19 +00:00
|
|
|
background: '{form.field.background}',
|
|
|
|
color: '{form.field.icon.color}',
|
|
|
|
hoverColor: '{form.field.icon.color}',
|
|
|
|
activeColor: '{form.field.icon.color}',
|
2024-05-13 14:15:43 +00:00
|
|
|
borderColor: '{form.field.border.color}',
|
|
|
|
hoverBorderColor: '{form.field.border.color}',
|
|
|
|
activeBorderColor: '{form.field.border.color}',
|
|
|
|
borderRadius: '{form.field.border.radius}',
|
|
|
|
focusRing: {
|
|
|
|
width: '{focus.ring.width}',
|
|
|
|
style: '{focus.ring.style}',
|
|
|
|
color: '{focus.ring.color}',
|
|
|
|
offset: '{focus.ring.offset}',
|
|
|
|
shadow: '{focus.ring.shadow}'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
inputIcon: {
|
|
|
|
color: '{form.field.icon.color}'
|
|
|
|
},
|
|
|
|
viewMonth: {
|
|
|
|
hoverBackground: '{content.hover.background}',
|
|
|
|
color: '{content.color}',
|
|
|
|
hoverColor: '{content.hover.color}',
|
|
|
|
padding: '0.25rem'
|
|
|
|
},
|
|
|
|
viewYear: {
|
|
|
|
hoverBackground: '{content.hover.background}',
|
|
|
|
color: '{content.color}',
|
|
|
|
hoverColor: '{content.hover.color}',
|
|
|
|
padding: '0.25rem'
|
|
|
|
},
|
|
|
|
group: {
|
|
|
|
borderColor: '{content.border.color}',
|
|
|
|
gap: '{overlay.popover.padding}'
|
|
|
|
},
|
|
|
|
dayView: {
|
|
|
|
margin: '0.5rem 0 0 0'
|
|
|
|
},
|
|
|
|
weekDay: {
|
|
|
|
padding: '0.25rem',
|
|
|
|
fontWeight: '500',
|
|
|
|
color: '{content.color}'
|
|
|
|
},
|
|
|
|
date: {
|
|
|
|
hoverBackground: '{content.hover.background}',
|
|
|
|
selectedBackground: '{highlight.background}',
|
|
|
|
color: '{content.color}',
|
|
|
|
hoverColor: '{content.hover.color}',
|
|
|
|
selectedColor: '{highlight.color}',
|
|
|
|
width: '2rem',
|
|
|
|
height: '2rem',
|
|
|
|
borderRadius: '50%',
|
|
|
|
padding: '0.25rem',
|
|
|
|
focusRing: {
|
|
|
|
width: '{focus.ring.width}',
|
|
|
|
style: '{focus.ring.style}',
|
|
|
|
color: '{focus.ring.color}',
|
|
|
|
offset: '{focus.ring.offset}',
|
|
|
|
shadow: '{focus.ring.shadow}'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
monthView: {
|
|
|
|
margin: '0.5rem 0 0 0'
|
|
|
|
},
|
|
|
|
month: {
|
|
|
|
borderRadius: '{content.border.radius}'
|
|
|
|
},
|
|
|
|
yearView: {
|
|
|
|
margin: '0.5rem 0 0 0'
|
|
|
|
},
|
|
|
|
year: {
|
|
|
|
borderRadius: '{content.border.radius}'
|
|
|
|
},
|
|
|
|
buttonbar: {
|
|
|
|
padding: '0.5rem 0 0 0',
|
|
|
|
borderColor: '{content.border.color}'
|
|
|
|
},
|
|
|
|
timePicker: {
|
|
|
|
padding: '0.5rem 0 0 0',
|
|
|
|
borderColor: '{content.border.color}',
|
|
|
|
gap: '0.5rem',
|
|
|
|
buttonGap: '0.25rem'
|
|
|
|
},
|
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
dropdown: {
|
|
|
|
hoverBackground: '{surface.200}',
|
2024-05-14 22:53:19 +00:00
|
|
|
activeBackground: '{surface.300}'
|
2024-05-13 14:15:43 +00:00
|
|
|
},
|
|
|
|
today: {
|
|
|
|
background: '{surface.200}',
|
|
|
|
color: '{surface.900}'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
dropdown: {
|
|
|
|
hoverBackground: '{surface.700}',
|
2024-05-14 22:53:19 +00:00
|
|
|
activeBackground: '{surface.600}'
|
2024-05-13 14:15:43 +00:00
|
|
|
},
|
|
|
|
today: {
|
|
|
|
background: '{surface.700}',
|
|
|
|
color: '{surface.0}'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|