2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-04-01 12:55:29 +00:00
|
|
|
handle: {
|
2024-05-08 10:51:06 +00:00
|
|
|
borderRadius: '50%',
|
|
|
|
size: '1rem'
|
2024-04-01 12:55:29 +00:00
|
|
|
},
|
2024-05-05 16:03:43 +00:00
|
|
|
root: {
|
2024-05-08 10:51:06 +00:00
|
|
|
width: '2.5rem',
|
|
|
|
height: '1.5rem',
|
|
|
|
borderRadius: '30px',
|
|
|
|
gap: '0.25rem',
|
|
|
|
shadow: '{form.field.shadow}',
|
|
|
|
focusRing: {
|
|
|
|
width: '{focus.ring.width}',
|
|
|
|
style: '{focus.ring.style}',
|
|
|
|
color: '{focus.ring.color}',
|
|
|
|
offset: '{focus.ring.offset}',
|
|
|
|
shadow: '{focus.ring.shadow}'
|
|
|
|
}
|
2024-05-05 16:03:43 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
root: {
|
|
|
|
background: '{surface.300}',
|
2024-03-13 18:50:24 +00:00
|
|
|
invalidBackground: '{red.400}',
|
|
|
|
hoverBackground: '{surface.400}',
|
2024-05-08 11:04:46 +00:00
|
|
|
checkedBackground: '{primary.color}',
|
|
|
|
checkedHoverBackground: '{primary.hover.color}'
|
2024-02-19 22:53:42 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
handle: {
|
|
|
|
background: '{surface.0}',
|
2024-03-13 18:50:24 +00:00
|
|
|
hoverBackground: '{surface.0}',
|
|
|
|
checkedBackground: '{surface.0}',
|
|
|
|
checkedHoverBackground: '{surface.0}',
|
|
|
|
invalidBackground: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
root: {
|
|
|
|
background: '{surface.700}',
|
2024-03-13 18:50:24 +00:00
|
|
|
invalidBackground: '{red.300}',
|
|
|
|
hoverBackground: '{surface.600}',
|
2024-05-08 11:04:46 +00:00
|
|
|
checkedBackground: '{primary.color}',
|
|
|
|
checkedHoverBackground: '{primary.hover.color}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
handle: {
|
|
|
|
background: '{surface.400}',
|
2024-03-13 18:50:24 +00:00
|
|
|
hoverBackground: '{surface.300}',
|
|
|
|
checkedBackground: '{surface.900}',
|
|
|
|
checkedHoverBackground: '{surface.900}',
|
|
|
|
invalidBackground: '{surface.900}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|