19 lines
471 B
JavaScript
19 lines
471 B
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
indicator: {
|
||
|
background: '{surface.200}',
|
||
|
hoverBackground: '{surface.300}',
|
||
|
activeBackground: '{primary.color}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
indicator: {
|
||
|
background: '{surface.700}',
|
||
|
hoverBackground: '{surface.600}',
|
||
|
activeBackground: '{primary.color}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|