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

29 lines
771 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.0}',
borderColor: '{surface.200}',
2024-03-12 12:07:51 +00:00
color: '{surface.700}'
},
2024-02-20 20:46:42 +00:00
closeIcon: {
color: '{surface.500}',
2024-03-12 12:07:51 +00:00
hoverColor: '{surface.600}',
hoverBackground: '{surface.100}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.900}',
borderColor: '{surface.700}',
2024-03-12 12:07:51 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
closeIcon: {
color: '{surface.400}',
2024-03-12 12:07:51 +00:00
hoverColor: '{surface.300}',
hoverBackground: '{surface.800}'
}
}
}
};