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

23 lines
505 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
borderColor: '{surface.200}'
},
2024-02-20 20:46:42 +00:00
content: {
background: '{surface.0}',
textColor: '{surface.700}'
}
},
dark: {
root: {
borderColor: '{surface.700}'
},
content: {
background: '{surface.900}',
textColor: '{surface.0}'
}
}
}
};