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

50 lines
1.4 KiB
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
root: {
background: '{content.background}',
borderColor: '{content.border.color}',
2024-05-11 14:33:17 +00:00
borderRadius: '{content.border.radius}',
color: '{content.color}',
2024-05-11 14:45:19 +00:00
padding: '0.75rem 1.125rem 1.125rem 1.125rem'
2024-05-05 20:35:38 +00:00
},
legend: {
2024-05-11 14:33:17 +00:00
borderRadius: '{content.border.radius}',
borderWidth: '1px',
borderColor: '{content.border.color}',
2024-05-11 14:38:10 +00:00
padding: '0.625rem 0.875rem',
2024-05-11 14:33:17 +00:00
gap: '0.5rem',
fontWeight: '700',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
2024-05-05 20:35:38 +00:00
},
toggleIcon: {
color: '{text.muted.color}',
hoverColor: '{text.hover.muted.color}'
2024-05-11 14:33:17 +00:00
},
content: {
padding: '0'
},
colorScheme: {
light: {
legend: {
2024-05-13 08:03:41 +00:00
background: '{surface.50}',
hoverBackground: '{surface.100}',
2024-05-11 14:33:17 +00:00
color: '{text.color}',
hoverColor: '{text.hover.color}'
}
},
dark: {
legend: {
background: '{surface.800}',
hoverBackground: '{surface.700}',
color: '{text.color}',
hoverColor: '{text.hover.color}'
}
}
2024-05-05 20:35:38 +00:00
}
};