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

51 lines
1.6 KiB
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}',
activeBorderColor: '{primary.color}',
color: '{surface.500}',
hoverColor: '{surface.700}',
activeColor: '{primary.color}'
2024-02-20 20:46:42 +00:00
},
navigatorIcon: {
background: '{surface.0}',
color: '{surface.500}',
hoverColor: '{surface.700}',
2024-02-20 20:46:42 +00:00
boxShadow: '0px 0px 10px 50px rgba(255, 255, 255, 0.6)'
},
content: {
background: '{surface.0}',
color: '{surface.700}'
2024-03-27 10:59:21 +00:00
}
2024-02-20 20:46:42 +00:00
},
dark: {
nav: {
background: '{surface.900}',
borderColor: '{surface.700}'
},
header: {
borderColor: '{surface.700}',
activeBorderColor: '{primary.color}',
color: '{surface.400}',
hoverColor: '{surface.0}',
activeColor: '{primary.color}'
2024-02-20 20:46:42 +00:00
},
navigatorIcon: {
background: '{surface.900}',
color: '{surface.400}',
hoverColor: '{surface.0}',
2024-03-27 10:59:21 +00:00
boxShadow: '0px 0px 10px 50px color-mix(in srgb, {surface.900}, transparent 50%)'
2024-02-20 20:46:42 +00:00
},
content: {
background: '{surface.900}',
color: '{surface.0}'
}
}
}
};