30 lines
755 B
JavaScript
30 lines
755 B
JavaScript
|
export default {
|
||
|
meter: {
|
||
|
borderColor: '{content.border.color}'
|
||
|
},
|
||
|
icon: {
|
||
|
color: '{form.field.icon.color}'
|
||
|
},
|
||
|
overlay: {
|
||
|
background: '{overlay.popover.background}',
|
||
|
borderColor: '{overlay.popover.border.color}',
|
||
|
color: '{overlay.popover.color}'
|
||
|
},
|
||
|
colorScheme: {
|
||
|
light: {
|
||
|
strength: {
|
||
|
weakBackground: '{red.500}',
|
||
|
mediumBackground: '{amber.500}',
|
||
|
strongBackground: '{green.500}'
|
||
|
}
|
||
|
},
|
||
|
dark: {
|
||
|
strength: {
|
||
|
weakBackground: '{red.400}',
|
||
|
mediumBackground: '{amber.400}',
|
||
|
strongBackground: '{green.400}'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|