31 lines
723 B
JavaScript
31 lines
723 B
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
root: {
|
||
|
background: '{surface.0}'
|
||
|
},
|
||
|
light: {
|
||
|
item: {
|
||
|
color: '{surface.500}',
|
||
|
hoverColor: '{surface.700}',
|
||
|
iconColor: '{surface.400}'
|
||
|
},
|
||
|
separator: {
|
||
|
color: '{surface.400}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
root: {
|
||
|
background: '{surface.900}'
|
||
|
},
|
||
|
item: {
|
||
|
color: '{surface.400}',
|
||
|
hoverColor: '{surface.0}',
|
||
|
iconColor: '{surface.500}'
|
||
|
},
|
||
|
separator: {
|
||
|
color: '{surface.500}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|