2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
root: {
|
|
|
|
background: '{surface.800}',
|
2024-03-12 10:07:36 +00:00
|
|
|
hoverBackground: '{surface.700}',
|
|
|
|
color: '{surface.100}',
|
|
|
|
hoverColor: '{surface.0}'
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
root: {
|
|
|
|
background: '{surface.800}',
|
2024-03-12 10:07:36 +00:00
|
|
|
hoverBackground: '{surface.700}',
|
|
|
|
color: '{surface.300}',
|
|
|
|
hoverColor: '{surface.200}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|