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

27 lines
589 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
background: '{surface.200}'
2024-03-12 10:07:36 +00:00
},
value: {
background: '{primary.color}'
},
label: {
color: '{primary.inverse.color}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
background: '{surface.700}'
2024-03-12 10:07:36 +00:00
},
value: {
background: '{primary.color}'
},
label: {
color: '{primary.inverse.color}'
}
}
}
};