New tokens for Checkbox

This commit is contained in:
Cagatay Civici 2024-05-07 11:33:44 +03:00
parent ee5843c315
commit fc2a466b02
6 changed files with 38 additions and 13 deletions

View file

@ -1,8 +1,8 @@
export default {
root: {
borderRadius: '{rounded.sm}',
width: '1.25rem',
height: '1.25rem',
borderRadius: '{border.radius.sm}',
width: '1.5rem',
height: '1.5rem',
background: '{form.field.background}',
checkedBackground: '{primary.color}',
checkedHoverBackground: '{primary.hover.color}',
@ -10,13 +10,22 @@ export default {
filledBackground: '{form.field.filled.background}',
borderColor: '{form.field.border.color}',
hoverBorderColor: '{form.field.hover.border.color}',
focusBorderColor: '{form.field.focus.border.color}',
checkedBorderColor: '{primary.color}',
checkedHoverBorderColor: '{primary.hover.color}',
checkedFocusBorderColor: '{primary.color}',
invalidBorderColor: '{form.field.invalid.border.color}',
shadow: '{form.field.shadow}'
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}'
}
},
icon: {
size: '0.875rem',
size: '1rem',
color: '{form.field.color}',
checkedColor: '{primary.inverse.color}',
checkedHoverColor: '{primary.inverse.color}',