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

33 lines
1.3 KiB
JavaScript
Raw Normal View History

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