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

33 lines
1.2 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
root: {
width: '1.25rem',
height: '1.25rem',
background: '{form.field.background}',
2024-03-13 11:59:34 +00:00
checkedBackground: '{primary.color}',
checkedHoverBackground: '{primary.hover.color}',
disabledBackground: '{form.field.disabled.background}',
filledBackground: '{form.field.filled.background}',
2024-02-20 20:46:42 +00:00
borderColor: '{form.field.border.color}',
2024-05-07 08:44:03 +00:00
hoverBorderColor: '{form.field.hover.border.color}',
focusBorderColor: '{form.field.border.color}',
2024-03-13 11:59:34 +00:00
checkedBorderColor: '{primary.color}',
checkedHoverBorderColor: '{primary.hover.color}',
2024-05-07 08:44:03 +00:00
checkedFocusBorderColor: '{primary.color}',
2024-03-13 11:59:34 +00:00
invalidBorderColor: '{form.field.invalid.border.color}',
2024-05-07 08:44:03 +00:00
shadow: '{form.field.shadow}',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
2024-02-20 20:46:42 +00:00
},
icon: {
size: '0.75rem',
2024-03-13 11:59:34 +00:00
checkedColor: '{primary.inverse.color}',
checkedHoverColor: '{primary.inverse.color}',
disabledColor: '{form.field.disabled.color}'
}
};