fix: replace invented hex color with existing --ar-bg token

Code review flagged .encounter-card__artwork-frame using a new
hardcoded #050607 background instead of reusing an existing design
token, violating the no-new-hex-colors requirement.
This commit is contained in:
Bastian Wagner
2026-08-19 13:39:35 +02:00
parent 15aa83d221
commit 784bd3ce3a

View File

@@ -17,7 +17,7 @@
overflow: hidden; overflow: hidden;
aspect-ratio: 4 / 3; aspect-ratio: 4 / 3;
border-block-end: 1px solid rgb(155 122 66 / 0.45); border-block-end: 1px solid rgb(155 122 66 / 0.45);
background: #050607; background: var(--ar-bg);
} }
.encounter-card__artwork-frame::after { .encounter-card__artwork-frame::after {