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

44 lines
1.1 KiB
JavaScript
Raw Normal View History

export default {
2024-05-05 15:58:31 +00:00
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 15:58:31 +00:00
},
range: {
background: '{primary.color}'
},
handle: {
2024-05-08 12:27:02 +00:00
width: '20px',
height: '20px',
borderRadius: '50%',
2024-05-05 15:58:31 +00:00
background: '{content.border.color}',
2024-05-08 12:27:02 +00:00
hoverBackground: '{content.border.color}',
content: {
borderRadius: '50%',
hoverBackground: '{content.background}',
width: '16px',
height: '16px',
shadow: '0px 0.5px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.14)'
},
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
2024-05-05 15:58:31 +00:00
},
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
handle: {
contentBackground: '{surface.0}'
}
},
dark: {
handle: {
contentBackground: '{surface.950}'
}
}
}
};