23 lines
634 B
JavaScript
23 lines
634 B
JavaScript
|
export default {
|
||
|
variables: {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
root: {
|
||
|
background: '{surface.800}',
|
||
|
backgroundHover: '{surface.700}',
|
||
|
textColor: '{surface.100}',
|
||
|
textColorHover: '{surface.0}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
root: {
|
||
|
background: '{surface.800}',
|
||
|
backgroundHover: '{surface.700}',
|
||
|
textColor: '{surface.300}',
|
||
|
textColorHover: '{surface.200}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|