27 lines
569 B
JavaScript
27 lines
569 B
JavaScript
|
export default {
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
value: {
|
||
|
background: '{primary.color}'
|
||
|
},
|
||
|
range: {
|
||
|
background: '{surface.200}'
|
||
|
},
|
||
|
text: {
|
||
|
color: '{surface.500}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
value: {
|
||
|
background: '{primary.color}'
|
||
|
},
|
||
|
range: {
|
||
|
background: '{surface.700}'
|
||
|
},
|
||
|
text: {
|
||
|
color: '{surface.400}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|