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

36 lines
1001 B
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
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 20:35:38 +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.75rem'
2024-05-05 20:35:38 +00:00
},
colorScheme: {
light: {
strength: {
weakBackground: '{red.500}',
mediumBackground: '{amber.500}',
strongBackground: '{green.500}'
}
},
dark: {
strength: {
weakBackground: '{red.400}',
mediumBackground: '{amber.400}',
strongBackground: '{green.400}'
}
}
}
};