primevue-mirror/components/lib/themes/aura/password/index.js

30 lines
755 B
JavaScript
Raw Normal View History

export default {
2024-05-05 17:18:36 +00:00
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}'
},
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}'
}
}
}
};