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

19 lines
471 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
indicator: {
background: '{surface.200}',
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.300}',
activeBackground: '{primary.color}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
indicator: {
background: '{surface.700}',
2024-03-12 11:27:32 +00:00
hoverBackground: '{surface.600}',
activeBackground: '{primary.color}'
}
}
}
};