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

41 lines
1.1 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
meter: {
borderColor: '{surface.200}'
},
2024-02-20 20:46:42 +00:00
icon: {
color: '{surface.500}'
},
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
},
overlay: {
background: '{surface.0}',
borderColor: '{surface.200}',
2024-03-13 18:50:24 +00:00
color: '{surface.700}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
meter: {
borderColor: '{surface.700}'
},
icon: {
color: '{surface.400}'
},
strength: {
2024-03-13 18:50:24 +00:00
weakBackground: '{red.400}',
mediumBackground: '{amber.400}',
strongBackground: '{green.400}'
2024-02-20 20:46:42 +00:00
},
overlay: {
background: '{surface.900}',
borderColor: '{surface.700}',
2024-03-13 18:50:24 +00:00
color: '{surface.0}'
}
}
}
};