mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
22 lines
487 B
JavaScript
22 lines
487 B
JavaScript
export default {
|
|
colorScheme: {
|
|
light: {
|
|
root: {
|
|
background: '{surface.0}',
|
|
color: '{surface.700}'
|
|
},
|
|
subtitle: {
|
|
color: '{surface.500}'
|
|
}
|
|
},
|
|
dark: {
|
|
root: {
|
|
background: '{surface.900}',
|
|
color: '{surface.0}'
|
|
},
|
|
subtitle: {
|
|
color: '{surface.400}'
|
|
}
|
|
}
|
|
}
|
|
};
|