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

31 lines
785 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
track: {
background: '{surface.200}'
},
2024-02-20 20:46:42 +00:00
handle: {
background: '{surface.200}',
2024-03-13 18:50:24 +00:00
hoverBackground: '{surface.200}',
2024-02-20 20:46:42 +00:00
contentBackground: '{surface.0}'
},
range: {
background: '{primary.color}'
}
},
dark: {
track: {
background: '{surface.700}'
},
handle: {
background: '{surface.700}',
2024-03-13 18:50:24 +00:00
hoverBackground: '{surface.700}',
2024-02-20 20:46:42 +00:00
contentBackground: '{surface.950}'
},
range: {
background: '{primary.color}'
}
}
}
};