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

44 lines
1.0 KiB
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
track: {
borderRadius: '{content.border.radius}',
size: '3px'
},
range: {
background: '{primary.color}'
},
handle: {
2024-05-14 22:53:19 +00:00
width: '16px',
height: '16px',
2024-05-13 14:15:43 +00:00
borderRadius: '50%',
2024-05-14 22:53:19 +00:00
background: '{primary.color}',
hoverBackground: '{primary.color}',
2024-05-13 14:15:43 +00:00
content: {
borderRadius: '50%',
2024-05-14 22:53:19 +00:00
background: '{primary.color}',
hoverBackground: '{primary.color}',
width: '12px',
height: '12px',
shadow: 'none'
2024-05-13 14:15:43 +00:00
},
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
2024-05-15 06:31:20 +00:00
},
colorScheme: {
light: {
track: {
background: '{surface.300}'
}
},
dark: {
track: {
background: '{surface.600}'
}
}
2024-05-13 14:15:43 +00:00
}
};