25 lines
633 B
JavaScript
25 lines
633 B
JavaScript
|
export default {
|
||
|
padding: '{form.field.padding.y} {form.field.padding.x}',
|
||
|
focusRing: {
|
||
|
width: '{focus.ring.width}',
|
||
|
style: '{focus.ring.style}',
|
||
|
color: '{focus.ring.color}',
|
||
|
offset: '{focus.ring.offset}',
|
||
|
shadow: '{focus.ring.shadow}'
|
||
|
},
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
display: {
|
||
|
hoverBackground: '{surface.100}',
|
||
|
hoverColor: '{surface.800}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
display: {
|
||
|
hoverBackground: '{surface.800}',
|
||
|
hoverColor: '{surface.0}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|