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

45 lines
1.5 KiB
JavaScript

export default {
colorScheme: {
light: {
root: {
background: '{surface.100}',
disabledBackground: '{form.field.disabled.background}',
invalidBorderColor: '{form.field.invalid.border.color}'
},
item: {
checkedBackground: '{surface.0}',
color: '{surface.500}',
hoverColor: '{surface.700}',
checkedColor: '{surface.900}',
disabledColor: '{form.field.disabled.color}'
},
itemIcon: {
color: '{surface.500}',
hoverColor: '{surface.700}',
checkedColor: '{surface.900}',
disabledColor: '{form.field.disabled.color}'
}
},
dark: {
root: {
background: '{surface.950}',
disabledBackground: '{form.field.disabled.background}',
invalidBorderColor: '{form.field.invalid.border.color}'
},
item: {
checkedBackground: '{surface.800}',
color: '{surface.400}',
hoverColor: '{surface.300}',
checkedColor: '{surface.0}',
disabledColor: '{form.field.disabled.color}'
},
itemIcon: {
color: '{surface.400}',
hoverColor: '{surface.300}',
checkedColor: '{surface.0}',
disabledColor: '{form.field.disabled.color}'
}
}
}
};