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

35 lines
929 B
JavaScript
Raw Normal View History

2024-04-19 13:51:57 +00:00
export default {
2024-05-04 11:47:06 +00:00
tabList: {
background: '{content.background}',
borderColor: '{content.border.color}'
},
tab: {
borderColor: '{content.border.color}',
activeBorderColor: '{primary.color}',
color: '{text.muted.color}',
hoverColor: '{text.color}',
activeColor: '{primary.color}'
},
tabPanel: {
background: '{content.background}',
color: '{content.color}'
},
navButton: {
background: '{content.background}',
color: '{text.muted.color}',
hoverColor: '{text.color}'
},
2024-04-19 13:51:57 +00:00
colorScheme: {
light: {
2024-05-04 11:47:06 +00:00
navButton: {
2024-04-19 13:51:57 +00:00
boxShadow: '0px 0px 10px 50px rgba(255, 255, 255, 0.6)'
}
},
dark: {
2024-05-04 11:47:06 +00:00
navButton: {
boxShadow: '0px 0px 10px 50px color-mix(in srgb, {content.background}, transparent 50%)'
2024-04-19 13:51:57 +00:00
}
}
}
};