2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
nav: {
|
|
|
|
background: '{surface.0}',
|
|
|
|
borderColor: '{surface.200}'
|
2024-02-19 22:53:42 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
header: {
|
|
|
|
borderColor: '{surface.200}',
|
2024-03-12 08:19:23 +00:00
|
|
|
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}',
|
2024-03-12 08:19:23 +00:00
|
|
|
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}',
|
2024-03-12 08:19:23 +00:00
|
|
|
color: '{surface.700}'
|
|
|
|
},
|
|
|
|
|
2024-02-20 20:46:42 +00:00
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
nav: {
|
|
|
|
background: '{surface.900}',
|
|
|
|
borderColor: '{surface.700}'
|
|
|
|
},
|
|
|
|
header: {
|
|
|
|
borderColor: '{surface.700}',
|
2024-03-12 08:19:23 +00:00
|
|
|
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}',
|
2024-03-12 08:19:23 +00:00
|
|
|
hoverColor: '{surface.0}',
|
2024-02-20 20:46:42 +00:00
|
|
|
boxShadow: '0px 0px 10px 50px color-mix(in srgb, var(--p-surface-900), transparent 50%)'
|
|
|
|
},
|
|
|
|
content: {
|
|
|
|
background: '{surface.900}',
|
2024-03-12 08:19:23 +00:00
|
|
|
color: '{surface.0}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|