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

45 lines
1.2 KiB
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
track: {
2024-05-08 12:27:02 +00:00
background: '{content.border.color}',
2024-05-08 15:15:10 +00:00
borderRadius: '{content.border.radius}',
2024-05-08 12:27:02 +00:00
size: '3px'
2024-05-05 20:35:38 +00:00
},
range: {
background: '{primary.color}'
},
handle: {
2024-05-08 12:27:02 +00:00
width: '16px',
height: '16px',
borderRadius: '50%',
background: '{primary.color}',
hoverBackground: '{primary.color}',
content: {
background: '{content.background}',
hoverBackground: '{primary.color}',
borderRadius: '50%',
width: '12px',
height: '12px',
shadow: 'none'
},
focusRing: {
width: '{form.field.focus.ring.width}',
style: '{form.field.focus.ring.style}',
color: '{form.field.focus.ring.color}',
offset: '{form.field.focus.ring.offset}',
shadow: '{form.field.focus.ring.shadow}'
}
2024-05-05 20:35:38 +00:00
},
colorScheme: {
light: {
handle: {
contentBackground: '{surface.0}'
}
},
dark: {
handle: {
contentBackground: '{surface.950}'
}
}
}
};