2024-05-13 14:15:43 +00:00
|
|
|
export default {
|
|
|
|
root: {
|
|
|
|
background: '{content.background}',
|
|
|
|
borderColor: '{content.border.color}',
|
|
|
|
borderRadius: '{content.border.radius}',
|
|
|
|
color: '{content.color}',
|
2024-05-14 11:27:21 +00:00
|
|
|
padding: '0.75rem 1.125rem 1.125rem 1.125rem'
|
2024-05-13 14:15:43 +00:00
|
|
|
},
|
|
|
|
legend: {
|
|
|
|
background: '{content.background}',
|
|
|
|
hoverBackground: '{content.hover.background}',
|
|
|
|
color: '{content.color}',
|
|
|
|
hoverColor: '{content.hover.color}',
|
|
|
|
borderRadius: '{content.border.radius}',
|
|
|
|
borderWidth: '1px',
|
2024-05-14 11:27:21 +00:00
|
|
|
borderColor: '{content.border.color}',
|
2024-05-13 14:15:43 +00:00
|
|
|
padding: '0.5rem 0.75rem',
|
|
|
|
gap: '0.5rem',
|
2024-05-14 21:42:42 +00:00
|
|
|
fontWeight: '700',
|
2024-05-13 14:15:43 +00:00
|
|
|
focusRing: {
|
|
|
|
width: '{focus.ring.width}',
|
|
|
|
style: '{focus.ring.style}',
|
|
|
|
color: '{focus.ring.color}',
|
|
|
|
offset: '{focus.ring.offset}',
|
|
|
|
shadow: '{focus.ring.shadow}'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleIcon: {
|
|
|
|
color: '{text.muted.color}',
|
|
|
|
hoverColor: '{text.hover.muted.color}'
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
padding: '0'
|
|
|
|
}
|
|
|
|
};
|