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

72 lines
2.1 KiB
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
2024-05-11 16:45:10 +00:00
tablist: {
borderWidth: '0',
2024-05-05 20:35:38 +00:00
background: '{content.background}',
borderColor: '{content.border.color}'
},
tab: {
2024-05-11 16:45:10 +00:00
borderWidth: '2px 0 0 0',
borderColor: 'transparent',
hoverBorderColor: 'transparent',
2024-05-05 20:35:38 +00:00
activeBorderColor: '{primary.color}',
color: '{text.muted.color}',
hoverColor: '{text.color}',
2024-05-11 16:45:10 +00:00
activeColor: '{primary.color}',
padding: '1rem 1.25rem',
2024-05-14 12:01:05 +00:00
fontWeight: '700',
2024-05-11 16:45:10 +00:00
margin: '0',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: 'inset {focus.ring.shadow}'
}
2024-05-05 20:35:38 +00:00
},
2024-05-11 16:45:10 +00:00
tabpanel: {
2024-05-05 20:35:38 +00:00
background: '{content.background}',
2024-05-11 16:45:10 +00:00
color: '{content.color}',
padding: '0.875rem 1.125rem 1.125rem 1.125rem'
2024-05-05 20:35:38 +00:00
},
navButton: {
background: '{content.background}',
color: '{text.muted.color}',
2024-05-11 16:45:10 +00:00
hoverColor: '{text.color}',
width: '2.5rem',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: 'inset {focus.ring.shadow}'
}
},
activeBar: {
height: '0',
bottom: '0',
background: 'transparent'
2024-05-05 20:35:38 +00:00
},
colorScheme: {
light: {
navButton: {
2024-05-11 16:45:10 +00:00
shadow: '0px 0px 10px 50px rgba(255, 255, 255, 0.6)'
},
tab: {
2024-05-13 08:03:41 +00:00
background: '{surface.50}',
hoverBackground: '{surface.100}',
2024-05-11 16:45:10 +00:00
activeBackground: '{surface.0}'
2024-05-05 20:35:38 +00:00
}
},
dark: {
navButton: {
2024-05-11 16:45:10 +00:00
shadow: '0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)'
},
tab: {
background: '{surface.800}',
hoverBackground: '{surface.700}',
activeBackground: '{surface.900}'
2024-05-05 20:35:38 +00:00
}
}
}
};