54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
export default {
|
|
handle: {
|
|
borderRadius: '50%',
|
|
size: '1rem'
|
|
},
|
|
root: {
|
|
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}'
|
|
},
|
|
borderWidth: '1px',
|
|
borderColor: 'transparent',
|
|
invalidBorderColor: '{form.field.invalid.border.color}'
|
|
},
|
|
colorScheme: {
|
|
light: {
|
|
root: {
|
|
background: '{surface.300}',
|
|
hoverBackground: '{surface.400}',
|
|
checkedBackground: '{primary.color}',
|
|
checkedHoverBackground: '{primary.hover.color}'
|
|
},
|
|
handle: {
|
|
background: '{surface.0}',
|
|
hoverBackground: '{surface.0}',
|
|
checkedBackground: '{surface.0}',
|
|
checkedHoverBackground: '{surface.0}'
|
|
}
|
|
},
|
|
dark: {
|
|
root: {
|
|
background: '{surface.700}',
|
|
hoverBackground: '{surface.600}',
|
|
checkedBackground: '{primary.color}',
|
|
checkedHoverBackground: '{primary.hover.color}'
|
|
},
|
|
handle: {
|
|
background: '{surface.400}',
|
|
hoverBackground: '{surface.300}',
|
|
checkedBackground: '{surface.900}',
|
|
checkedHoverBackground: '{surface.900}'
|
|
}
|
|
}
|
|
}
|
|
};
|