37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
export default {
|
|
colorScheme: {
|
|
light: {
|
|
panel: {
|
|
background: '{surface.0}',
|
|
borderColor: '{surface.200}',
|
|
color: '{surface.700}'
|
|
},
|
|
item: {
|
|
focusBackground: '{surface.100}',
|
|
color: '{surface.700}',
|
|
focusColor: '{surface.800}',
|
|
icon: {
|
|
color: '{surface.400}',
|
|
focusColor: '{surface.500}'
|
|
}
|
|
}
|
|
},
|
|
dark: {
|
|
panel: {
|
|
background: '{surface.900}',
|
|
borderColor: '{surface.700}',
|
|
color: '{surface.0}'
|
|
},
|
|
item: {
|
|
focusBackground: '{surface.800}',
|
|
color: '{surface.0}',
|
|
focusColor: '{surface.0}',
|
|
icon: {
|
|
color: '{surface.500}',
|
|
focusColor: '{surface.400}'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
};
|