primevue-mirror/components/lib/themes/primeone/presets/aura/tabmenu/index.js

29 lines
783 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
nav: {
background: '{surface.0}',
borderColor: '{surface.200}'
},
2024-02-20 20:46:42 +00:00
header: {
borderColor: '{surface.200}',
2024-03-13 06:56:24 +00:00
activeBorderColor: '{primary.color}',
color: '{surface.500}',
hoverColor: '{surface.700}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
nav: {
background: '{surface.900}',
borderColor: '{surface.700}'
},
header: {
borderColor: '{surface.700}',
2024-03-13 06:56:24 +00:00
activeBorderColor: '{primary.color}',
color: '{surface.400}',
hoverColor: '{surface.0}'
}
}
}
};