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

65 lines
1.7 KiB
JavaScript
Raw Normal View History

export default {
2024-02-20 20:46:42 +00:00
colorScheme: {
light: {
primary: {
background: '{primary.color}',
2024-03-12 10:07:36 +00:00
color: '{primary.inverseColor}'
},
2024-02-20 20:46:42 +00:00
secondary: {
background: '{surface.100}',
2024-03-12 10:07:36 +00:00
color: '{surface.600}'
2024-02-20 20:46:42 +00:00
},
success: {
background: '{green.500}',
2024-03-12 10:07:36 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
info: {
background: '{sky.500}',
2024-03-12 10:07:36 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
warn: {
background: '{orange.500}',
2024-03-12 10:07:36 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
danger: {
background: '{red.500}',
2024-03-12 10:07:36 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
},
contrast: {
background: '{surface.950}',
2024-03-12 10:07:36 +00:00
color: '{surface.0}'
2024-02-20 20:46:42 +00:00
}
},
dark: {
primary: {
background: '{primary.color}',
2024-03-12 10:07:36 +00:00
color: '{primary.inverseColor}'
2024-02-20 20:46:42 +00:00
},
secondary: {
background: '{surface.800}',
2024-03-12 10:07:36 +00:00
color: '{surface.300}'
2024-02-20 20:46:42 +00:00
},
success: {
background: '{green.400}',
2024-03-12 10:07:36 +00:00
color: '{green.950}'
2024-02-20 20:46:42 +00:00
},
info: {
background: '{sky.400}',
2024-03-12 10:07:36 +00:00
color: '{sky.950}'
2024-02-20 20:46:42 +00:00
},
warn: {
background: '{orange.400}',
2024-03-12 10:07:36 +00:00
color: '{orange.950}'
2024-02-20 20:46:42 +00:00
},
danger: {
background: '{red.400}',
2024-03-12 10:07:36 +00:00
color: '{red.950}'
2024-02-20 20:46:42 +00:00
},
contrast: {
background: '{surface.0}',
2024-03-12 10:07:36 +00:00
color: '{surface.950}'
}
}
}
};