primevue-mirror/components/lib/themes/aura/panelmenu/index.js

37 lines
1.0 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
panel: {
background: '{surface.0}',
borderColor: '{surface.200}',
2024-03-13 06:56:24 +00:00
color: '{surface.700}'
2024-02-20 20:46:42 +00:00
},
item: {
2024-03-13 06:56:24 +00:00
focusBackground: '{surface.100}',
color: '{surface.700}',
focusColor: '{surface.800}',
2024-02-20 20:46:42 +00:00
icon: {
color: '{surface.400}',
2024-03-13 06:56:24 +00:00
focusColor: '{surface.500}'
}
2024-02-20 20:46:42 +00:00
}
},
dark: {
panel: {
background: '{surface.900}',
borderColor: '{surface.700}',
2024-03-13 06:56:24 +00:00
color: '{surface.0}'
},
2024-02-20 20:46:42 +00:00
item: {
2024-03-13 06:56:24 +00:00
focusBackground: '{surface.800}',
color: '{surface.0}',
focusColor: '{surface.0}',
2024-02-20 20:46:42 +00:00
icon: {
color: '{surface.500}',
2024-03-13 06:56:24 +00:00
focusColor: '{surface.400}'
}
}
}
}
};