2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
root: {
|
|
|
|
background: '{surface.100}',
|
2024-03-13 18:50:24 +00:00
|
|
|
disabledBackground: '{form.field.background.disabled}',
|
|
|
|
invalidBorderColor: '{form.field.border.color.invalid}'
|
2024-02-19 22:53:42 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
item: {
|
2024-03-13 18:50:24 +00:00
|
|
|
checkedBackground: '{surface.0}',
|
|
|
|
color: '{surface.500}',
|
|
|
|
hoverColor: '{surface.700}',
|
|
|
|
checkedColor: '{surface.900}',
|
|
|
|
disabledColor: '{form.field.text.color.disabled}'
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
root: {
|
|
|
|
background: '{surface.950}',
|
2024-03-13 18:50:24 +00:00
|
|
|
disabledBackground: '{form.field.background.disabled}',
|
|
|
|
invalidBorderColor: '{form.field.border.color.invalid}'
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
item: {
|
2024-03-13 18:50:24 +00:00
|
|
|
checkedBackground: '{surface.800}',
|
|
|
|
color: '{surface.400}',
|
|
|
|
hoverColor: '{surface.300}',
|
|
|
|
checkedColor: '{surface.0}',
|
|
|
|
disabledColor: '{form.field.text.color.disabled}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|