29 lines
773 B
JavaScript
29 lines
773 B
JavaScript
export default {
|
|
colorScheme: {
|
|
light: {
|
|
root: {
|
|
background: '{surface.0}',
|
|
borderColor: '{surface.200}',
|
|
color: '{surface.700}'
|
|
},
|
|
headerIcon: {
|
|
color: '{surface.500}',
|
|
hoverColor: '{surface.600}',
|
|
hoverBackground: '{surface.100}'
|
|
}
|
|
},
|
|
dark: {
|
|
root: {
|
|
background: '{surface.900}',
|
|
borderColor: '{surface.700}',
|
|
color: '{surface.0}'
|
|
},
|
|
headerIcon: {
|
|
color: '{surface.400}',
|
|
hoverColor: '{surface.300}',
|
|
hoverBackground: '{surface.800}'
|
|
}
|
|
}
|
|
}
|
|
};
|