primevue-mirror/components/lib/themes/primeone/presets/aura/calendar/index.js

137 lines
4.5 KiB
JavaScript
Raw Normal View History

2024-02-21 07:46:48 +00:00
export default {
2024-02-21 07:59:25 +00:00
colorScheme: {
light: {
root: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
},
header: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
},
navigator: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.100}',
2024-02-21 07:59:25 +00:00
color: '{surface.500}',
2024-03-13 11:59:34 +00:00
hoverColor: '{surface.600}'
2024-02-21 07:59:25 +00:00
},
monthPicker: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.100}',
color: '{surface.700}',
hoverColor: '{surface.800}'
2024-02-21 07:59:25 +00:00
},
yearPicker: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.100}',
color: '{surface.700}',
hoverColor: '{surface.800}'
2024-02-21 07:59:25 +00:00
},
group: {
borderColor: '{surface.200}'
},
date: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.100}',
selectedBackground: '{highlight.background}',
color: '{surface.700}',
hoverColor: '{surface.800}',
selectedColor: '{highlight.color}'
2024-02-21 07:59:25 +00:00
},
today: {
background: '{surface.200}',
2024-03-13 11:59:34 +00:00
color: '{surface.900}'
2024-02-21 07:59:25 +00:00
},
month: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.100}',
selectedBackground: '{highlight.background}',
color: '{surface.700}',
hoverColor: '{surface.800}',
selectedColor: '{highlight.color}'
2024-02-21 07:59:25 +00:00
},
year: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.100}',
selectedBackground: '{highlight.background}',
color: '{surface.700}',
hoverColor: '{surface.800}',
selectedColor: '{highlight.color}'
2024-02-21 07:59:25 +00:00
},
buttonbar: {
borderColor: '{surface.200}'
},
timepicker: {
borderColor: '{surface.200}'
},
timepickerSpin: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.100}',
2024-02-21 07:59:25 +00:00
color: '{surface.500}',
2024-03-13 11:59:34 +00:00
hoverColor: '{surface.600}'
2024-02-21 07:59:25 +00:00
}
},
dark: {
root: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
},
header: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
},
navigator: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.800}',
2024-02-21 07:59:25 +00:00
color: '{surface.400}',
2024-03-13 11:59:34 +00:00
hoverColor: '{surface.300}'
2024-02-21 07:59:25 +00:00
},
monthPicker: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.800}',
color: '{surface.0}',
hoverColor: '{surface.0}'
2024-02-21 07:59:25 +00:00
},
yearPicker: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.800}',
color: '{surface.0}',
hoverColor: '{surface.0}'
2024-02-21 07:59:25 +00:00
},
group: {
borderColor: '{surface.700}'
},
date: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.800}',
selectedBackground: '{highlight.background}',
color: '{surface.0}',
hoverColor: '{surface.0}',
selectedColor: '{highlight.color}'
2024-02-21 07:59:25 +00:00
},
today: {
background: '{surface.700}',
2024-03-13 11:59:34 +00:00
color: '{surface.0}'
2024-02-21 07:59:25 +00:00
},
month: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.800}',
selectedBackground: '{highlight.background}',
color: '{surface.0}',
hoverColor: '{surface.0}',
selectedColor: '{highlight.color}'
2024-02-21 07:59:25 +00:00
},
year: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.800}',
selectedBackground: '{highlight.background}',
color: '{surface.0}',
hoverColor: '{surface.0}',
selectedColor: '{highlight.color}'
2024-02-21 07:59:25 +00:00
},
buttonbar: {
borderColor: '{surface.700}'
},
timepicker: {
borderColor: '{surface.700}'
},
timepickerSpin: {
2024-03-13 11:59:34 +00:00
hoverBackground: '{surface.800}',
2024-02-21 07:59:25 +00:00
color: '{surface.400}',
2024-03-13 11:59:34 +00:00
hoverColor: '{surface.300}'
2024-02-21 07:46:48 +00:00
}
}
}
};