17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
root: {
|
||
|
background: '{surface.700}',
|
||
|
color: '{surface.0}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
root: {
|
||
|
background: '{surface.700}',
|
||
|
color: '{surface.0}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|