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

21 lines
525 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
item: {
background: '{surface.100}',
2024-03-13 08:36:59 +00:00
hoverBackground: '{surface.200}',
color: '{surface.600}',
hoverColor: '{surface.700}'
2024-02-20 20:46:42 +00:00
}
},
2024-03-13 08:36:59 +00:00
dark: {
item: {
background: '{surface.800}',
hoverBackground: '{surface.700}',
color: '{surface.300}',
hoverColor: '{surface.200}'
}
}
}
};