31 lines
785 B
JavaScript
31 lines
785 B
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
track: {
|
||
|
background: '{surface.200}'
|
||
|
},
|
||
|
handle: {
|
||
|
background: '{surface.200}',
|
||
|
hoverBackground: '{surface.200}',
|
||
|
contentBackground: '{surface.0}'
|
||
|
},
|
||
|
range: {
|
||
|
background: '{primary.color}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
track: {
|
||
|
background: '{surface.700}'
|
||
|
},
|
||
|
handle: {
|
||
|
background: '{surface.700}',
|
||
|
hoverBackground: '{surface.700}',
|
||
|
contentBackground: '{surface.950}'
|
||
|
},
|
||
|
range: {
|
||
|
background: '{primary.color}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|