primevue-mirror/components/lib/themes/nora/tabmenu/index.js

44 lines
1.2 KiB
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
root: {
transitionDuration: '{transition.duration}'
},
2024-05-13 14:15:43 +00:00
tablist: {
borderWidth: '0 0 1px 0',
background: '{content.background}',
borderColor: '{content.border.color}'
},
item: {
2024-05-14 23:20:49 +00:00
background: '{content.background}',
hoverBackground: '{surface.200}',
activeBackground: '{primary.color}',
borderWidth: '0',
borderColor: 'transparent',
hoverBorderColor: 'transparent',
activeBorderColor: 'transparent',
2024-05-13 14:15:43 +00:00
color: '{text.muted.color}',
hoverColor: '{text.color}',
2024-05-14 23:20:49 +00:00
activeColor: '{primary.contrast.color}',
padding: '1rem 1.25rem',
fontWeight: '700',
margin: '0',
2024-05-13 14:15:43 +00:00
gap: '0.5rem',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
},
itemIcon: {
2024-05-14 23:20:49 +00:00
color: '{text.color}',
2024-05-13 14:15:43 +00:00
hoverColor: '{text.color}',
2024-05-14 23:20:49 +00:00
activeColor: '{primary.contrast.color}'
2024-05-13 14:15:43 +00:00
},
activeBar: {
2024-05-14 23:20:49 +00:00
height: '0',
bottom: '0',
background: 'transparent'
2024-05-13 14:15:43 +00:00
}
};