2024-04-01 11:33:13 +00:00
|
|
|
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}'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|