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

25 lines
633 B
JavaScript
Raw Normal View History

export default {
2024-05-09 19:00:50 +00:00
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}'
},
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
display: {
2024-03-12 10:07:36 +00:00
hoverBackground: '{surface.100}',
hoverColor: '{surface.800}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
display: {
2024-03-12 10:07:36 +00:00
hoverBackground: '{surface.800}',
hoverColor: '{surface.0}'
}
}
}
};