2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-05-05 17:18:36 +00:00
|
|
|
meter: {
|
2024-05-08 11:42:10 +00:00
|
|
|
borderColor: '{content.border.color}',
|
2024-05-08 15:15:10 +00:00
|
|
|
borderRadius: '{content.border.radius}',
|
2024-05-08 11:42:10 +00:00
|
|
|
height: '.75rem'
|
2024-05-05 17:18:36 +00:00
|
|
|
},
|
|
|
|
icon: {
|
|
|
|
color: '{form.field.icon.color}'
|
|
|
|
},
|
|
|
|
overlay: {
|
|
|
|
background: '{overlay.popover.background}',
|
|
|
|
borderColor: '{overlay.popover.border.color}',
|
2024-05-08 11:42:10 +00:00
|
|
|
borderRadius: '{overlay.popover.border.radius}',
|
|
|
|
color: '{overlay.popover.color}',
|
|
|
|
padding: '{overlay.popover.padding}',
|
|
|
|
shadow: '{overlay.popover.shadow}',
|
|
|
|
gap: '0.5rem'
|
2024-05-05 17:18:36 +00:00
|
|
|
},
|
2024-02-20 20:46:42 +00:00
|
|
|
colorScheme: {
|
|
|
|
light: {
|
|
|
|
strength: {
|
2024-03-13 18:50:24 +00:00
|
|
|
weakBackground: '{red.500}',
|
|
|
|
mediumBackground: '{amber.500}',
|
|
|
|
strongBackground: '{green.500}'
|
2024-02-20 20:46:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
dark: {
|
|
|
|
strength: {
|
2024-03-13 18:50:24 +00:00
|
|
|
weakBackground: '{red.400}',
|
|
|
|
mediumBackground: '{amber.400}',
|
|
|
|
strongBackground: '{green.400}'
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|