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

35 lines
1.2 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
root: {
background: '{form.field.background}',
2024-03-13 18:50:24 +00:00
disabledBackground: '{form.field.disabled.background}',
filledBackground: '{form.field.filled.background}',
filledFocusBackground: '{form.field.filled.focus.background}',
2024-02-20 20:46:42 +00:00
borderColor: '{form.field.border.color}',
2024-03-13 18:50:24 +00:00
hoverBorderColor: '{form.field.hover.border.color}',
focusBorderColor: '{form.field.focus.border.color}',
invalidBorderColor: '{form.field.invalid.border.color}',
color: '{form.field.color}',
disabledColor: '{form.field.disabled.color}',
placeholderColor: '{form.field.placeholder.color}',
2024-02-20 20:46:42 +00:00
boxShadow: '{form.field.box.shadow}'
},
colorScheme: {
light: {
chip: {
background: '{surface.100}',
2024-03-13 18:50:24 +00:00
focusBackground: '{surface.200}',
color: '{surface.800}',
focusColor: '{surface.900}'
}
},
2024-02-20 20:46:42 +00:00
dark: {
chip: {
background: '{surface.700}',
2024-03-13 18:50:24 +00:00
focusBackground: '{surface.600}',
color: '{surface.0}',
focusColor: '{surface.0}'
}
}
}
};