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

27 lines
589 B
JavaScript

export default {
colorScheme: {
light: {
root: {
background: '{surface.200}'
},
value: {
background: '{primary.color}'
},
label: {
color: '{primary.inverse.color}'
}
},
dark: {
root: {
background: '{surface.700}'
},
value: {
background: '{primary.color}'
},
label: {
color: '{primary.inverse.color}'
}
}
}
};