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

23 lines
487 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.0}',
color: '{surface.700}'
},
2024-02-20 20:46:42 +00:00
subtitle: {
color: '{surface.500}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.900}',
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
subtitle: {
color: '{surface.400}'
}
}
}
};