24 lines
633 B
JavaScript
24 lines
633 B
JavaScript
export default {
|
|
root: {
|
|
padding: '1.25rem',
|
|
background: '{content.background}',
|
|
gap: '0.5rem'
|
|
},
|
|
item: {
|
|
color: '{text.muted.color}',
|
|
hoverColor: '{text.color}',
|
|
iconColor: '{navigation.item.icon.color}',
|
|
borderRadius: '{content.border.radius}',
|
|
focusRing: {
|
|
width: '{focus.ring.width}',
|
|
style: '{focus.ring.style}',
|
|
color: '{focus.ring.color}',
|
|
offset: '{focus.ring.offset}',
|
|
shadow: '{focus.ring.shadow}'
|
|
}
|
|
},
|
|
separator: {
|
|
color: '{navigation.item.icon.color}'
|
|
}
|
|
};
|