mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 08:52:34 +00:00
18 lines
423 B
JavaScript
18 lines
423 B
JavaScript
export default {
|
|
colorScheme: {
|
|
light: {
|
|
root: {
|
|
background: '{surface.0}',
|
|
borderColor: '{surface.200}',
|
|
color: '{surface.700}'
|
|
}
|
|
},
|
|
dark: {
|
|
root: {
|
|
background: '{surface.900}',
|
|
borderColor: '{surface.700}',
|
|
color: '{surface.0}'
|
|
}
|
|
}
|
|
}
|
|
};
|