refactor: add color blue

This commit is contained in:
Net 2024-09-06 11:35:08 +07:00
parent 9cc6917522
commit fbd56e7cb0

View file

@ -13,7 +13,8 @@ const props = withDefaults(
| 'cyan'
| 'yellow'
| 'red'
| 'magenta';
| 'magenta'
| 'blue';
}[];
dark?: boolean;
labelI18n?: boolean;
@ -107,6 +108,10 @@ const props = withDefaults(
--_color: var(--pink-8-hsl);
}
.stat-card__blue {
--_color: var(--blue-6-hsl);
}
.dark .stat-card__purple {
--_color: var(--violet-10-hsl);
}
@ -122,4 +127,8 @@ const props = withDefaults(
.dark .stat-card__magenta {
--_color: var(--pink-7-hsl);
}
.dark .stat-card__blue {
--_color: var(--blue-10-hsl);
}
</style>