21 lines
419 B
JavaScript
21 lines
419 B
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
root: {
|
||
|
background: '{surface.200}'
|
||
|
},
|
||
|
grouped: {
|
||
|
borderColor: '{surface.0}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
root: {
|
||
|
background: '{surface.700}'
|
||
|
},
|
||
|
grouped: {
|
||
|
borderColor: '{surface.900}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|