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

21 lines
497 B
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
root: {
2024-05-04 12:12:43 +00:00
'color.1': '{red.500}',
'color.2': '{blue.500}',
'color.3': '{green.500}',
'color.4': '{yellow.500}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
root: {
2024-05-04 12:12:43 +00:00
'color.1': '{red.400}',
'color.2': '{blue.400}',
'color.3': '{green.400}',
'color.4': '{yellow.400}'
}
}
}
};