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

37 lines
1011 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.0}',
borderColor: '{surface.200}',
color: '{surface.700}'
},
2024-02-20 20:46:42 +00:00
legend: {
color: '{surface.700}',
hoverBackground: '{surface.100}',
hoverColor: '{surface.800}'
2024-02-20 20:46:42 +00:00
},
toggleIcon: {
color: '{surface.500}',
hoverColor: '{surface.600}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.900}',
borderColor: '{surface.700}',
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
legend: {
color: '{surface.0}',
hoverBackground: '{surface.800}',
hoverColor: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
toggleIcon: {
color: '{surface.400}',
hoverColor: '{surface.300}'
}
}
}
};