fix: settlement archetype badge text color (dark instead of gold)

darken(@color-paper, 40%) was producing the same gold as the background.
Use @color-dark (#2a1a0a) directly for legible dark text.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-03-20 17:33:47 +01:00
parent fd378fb452
commit ec291e9c60
2 changed files with 2 additions and 2 deletions

View File

@@ -43,7 +43,7 @@
.oathhammer .settlement-archetype-badge {
font-size: @font-size-sm;
color: darken(@color-paper, 40%);
color: @color-dark;
background: fade(@color-gold, 15%);
border: 1px solid fade(@color-gold, 40%);
border-radius: 3px;