33 lines
853 B
JavaScript
33 lines
853 B
JavaScript
export default {
|
|
colorScheme: {
|
|
light: {
|
|
root: {
|
|
background: '{surface.0}',
|
|
color: '{surface.700}'
|
|
},
|
|
navigator: {
|
|
hoverBackground: '{surface.100}',
|
|
color: '{surface.500}',
|
|
hoverColor: '{surface.600}'
|
|
},
|
|
currentPageReport: {
|
|
color: '{surface.500}'
|
|
}
|
|
},
|
|
dark: {
|
|
root: {
|
|
background: '{surface.900}',
|
|
color: '{surface.0}'
|
|
},
|
|
navigator: {
|
|
hoverBackground: '{surface.800}',
|
|
color: '{surface.400}',
|
|
hoverColor: '{surface.300}'
|
|
},
|
|
currentPageReport: {
|
|
color: '{surface.400}'
|
|
}
|
|
}
|
|
}
|
|
};
|