mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
26 lines
569 B
JavaScript
26 lines
569 B
JavaScript
export default {
|
|
colorScheme: {
|
|
light: {
|
|
value: {
|
|
background: '{primary.color}'
|
|
},
|
|
range: {
|
|
background: '{surface.200}'
|
|
},
|
|
text: {
|
|
color: '{surface.500}'
|
|
}
|
|
},
|
|
dark: {
|
|
value: {
|
|
background: '{primary.color}'
|
|
},
|
|
range: {
|
|
background: '{surface.700}'
|
|
},
|
|
text: {
|
|
color: '{surface.400}'
|
|
}
|
|
}
|
|
}
|
|
};
|