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

45 lines
1.5 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
disabledBackground: '{form.field.disabled.background}',
invalidBorderColor: '{form.field.invalid.border.color}'
},
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.disabled.color}'
2024-02-20 20:46:42 +00:00
},
itemIcon: {
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
disabledBackground: '{form.field.disabled.background}',
invalidBorderColor: '{form.field.invalid.border.color}'
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.disabled.color}'
2024-02-20 20:46:42 +00:00
},
itemIcon: {
color: '{surface.400}',
2024-03-13 18:50:24 +00:00
hoverColor: '{surface.300}',
checkedColor: '{surface.0}',
disabledColor: '{form.field.disabled.color}'
}
}
}
};