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

41 lines
1.1 KiB
JavaScript
Raw Normal View History

2024-05-13 14:15:43 +00:00
export default {
meter: {
borderRadius: '{content.border.radius}',
height: '.75rem'
},
icon: {
color: '{form.field.icon.color}'
},
overlay: {
background: '{overlay.popover.background}',
borderColor: '{overlay.popover.border.color}',
borderRadius: '{overlay.popover.border.radius}',
color: '{overlay.popover.color}',
padding: '{overlay.popover.padding}',
shadow: '{overlay.popover.shadow}',
gap: '0.5rem'
},
colorScheme: {
light: {
2024-05-25 09:35:41 +00:00
meter: {
background: '{surface.300}'
},
2024-05-13 14:15:43 +00:00
strength: {
2024-05-14 22:53:19 +00:00
weakBackground: '{red.600}',
mediumBackground: '{yellow.600}',
strongBackground: '{green.600}'
2024-05-13 14:15:43 +00:00
}
},
dark: {
2024-05-25 09:35:41 +00:00
meter: {
background: '{surface.600}'
},
2024-05-13 14:15:43 +00:00
strength: {
2024-05-14 22:53:19 +00:00
weakBackground: '{red.500}',
mediumBackground: '{yellow.500}',
strongBackground: '{green.500}'
2024-05-13 14:15:43 +00:00
}
}
}
};