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

27 lines
525 B
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
root: {
borderRadius: '{content.border.radius}',
height: '1.25rem'
},
value: {
background: '{primary.color}'
},
label: {
2024-05-14 11:04:59 +00:00
color: '{primary.contrast.color}',
2024-05-13 14:15:43 +00:00
fontSize: '0.75rem',
fontWeight: '600'
2024-05-15 06:31:20 +00:00
},
colorScheme: {
light: {
root: {
background: '{surface.300}'
}
},
dark: {
root: {
background: '{surface.600}'
}
}
2024-05-13 14:15:43 +00:00
}
};