2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-05-25 08:18:55 +00:00
|
|
|
root: {
|
|
|
|
transitionDuration: '{transition.duration}'
|
|
|
|
},
|
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}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|