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

45 lines
1.7 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.100}',
2024-03-13 18:50:24 +00:00
checkedBackground: '{surface.0}',
2024-03-25 21:11:32 +00:00
disabledBackground: '{form.field.disabled.background}',
borderColor: '{surface.100}',
2024-04-02 08:57:41 +00:00
disabledBorderColor: '{form.field.disabled.background}',
2024-03-25 21:11:32 +00:00
invalidBorderColor: '{form.field.invalid.border.color}',
2024-03-13 18:50:24 +00:00
color: '{surface.500}',
hoverColor: '{surface.700}',
checkedColor: '{surface.900}',
disabledColor: '{form.field.disabled.color}'
2024-02-20 20:46:42 +00:00
},
2024-03-25 21:11:32 +00:00
icon: {
2024-02-20 20:46:42 +00:00
color: '{surface.500}',
2024-03-13 18:50:24 +00:00
hoverColor: '{surface.700}',
checkedColor: '{surface.900}',
disabledColor: '{form.field.disabled.color}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.950}',
2024-03-13 18:50:24 +00:00
checkedBackground: '{surface.800}',
2024-03-25 21:11:32 +00:00
disabledBackground: '{form.field.disabled.background}',
borderColor: '{surface.950}',
2024-04-02 08:57:41 +00:00
disabledBorderColor: '{form.field.disabled.background}',
2024-03-25 21:11:32 +00:00
invalidBorderColor: '{form.field.invalid.border.color}',
2024-03-13 18:50:24 +00:00
color: '{surface.400}',
hoverColor: '{surface.300}',
checkedColor: '{surface.0}',
disabledColor: '{form.field.disabled.color}'
2024-02-20 20:46:42 +00:00
},
2024-03-25 21:11:32 +00:00
icon: {
2024-02-20 20:46:42 +00:00
color: '{surface.400}',
2024-03-13 18:50:24 +00:00
hoverColor: '{surface.300}',
checkedColor: '{surface.0}',
disabledColor: '{form.field.disabled.color}'
}
}
}
};