fix(projects): replace raw color literals with tokens in project-card.css

This commit is contained in:
Keith Solomon
2026-08-16 12:33:58 -05:00
parent 631ff4e1d0
commit 248179ac58
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -56,6 +56,9 @@
--color-on-primary-fixed: #00164e;
--color-on-primary-fixed-variant: #264191;
--color-primary-12: rgba(182, 196, 255, 0.12);
--color-primary-87: #dce1ff;
--color-success: #5ccf91;
--color-warning: #f4e04d;
--color-danger: #cc3b3b;
+2 -2
View File
@@ -34,7 +34,7 @@
}
.project-card__type {
background: rgba(182, 196, 255, 0.12);
background: var(--color-primary-12);
color: var(--color-primary, #b6c4ff);
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
@@ -104,7 +104,7 @@
border-color: var(--color-primary, #b6c4ff);
}
.project-card__action--primary:hover { background: #dce1ff; border-color: #dce1ff; }
.project-card__action--primary:hover { background: var(--color-primary-87); border-color: var(--color-primary-87); }
.project-card__action--secondary {
color: var(--color-on-surface, #e3e1e9);