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

54 lines
1.4 KiB
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
tablist: {
2024-05-11 09:30:44 +00:00
borderWidth: '0',
2024-05-05 20:35:38 +00:00
background: '{content.background}',
borderColor: '{content.border.color}'
},
2024-05-11 09:30:44 +00:00
item: {
borderWidth: '2px 0 0 0',
borderColor: 'transparent',
hoverBorderColor: 'transparent',
2024-05-05 20:35:38 +00:00
activeBorderColor: '{primary.color}',
color: '{text.muted.color}',
2024-05-11 09:30:44 +00:00
hoverColor: '{text.color}',
activeColor: '{primary.color}',
padding: '1rem 1.25rem',
fontWeight: '600',
margin: '0',
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: {
color: '{text.muted.color}',
hoverColor: '{text.color}',
activeColor: '{primary.color}'
},
activeBar: {
height: '0',
bottom: '0',
background: 'transparent'
},
colorScheme: {
light: {
item: {
2024-05-13 08:03:41 +00:00
background: '{surface.50}',
hoverBackground: '{surface.100}',
2024-05-11 09:30:44 +00:00
activeBackground: '{surface.0}'
}
},
dark: {
item: {
background: '{surface.800}',
2024-05-11 16:45:10 +00:00
hoverBackground: '{surface.700}',
2024-05-11 09:30:44 +00:00
activeBackground: '{surface.900}'
}
}
2024-05-05 20:35:38 +00:00
}
};