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:
@@ -1787,7 +1787,7 @@
|
||||
}
|
||||
.oathhammer .settlement-archetype-badge {
|
||||
font-size: calc(0.86rem * 0.85);
|
||||
color: #cd9d2c;
|
||||
color: #2a1a0a;
|
||||
background: rgba(200, 168, 75, 0.15);
|
||||
border: 1px solid rgba(200, 168, 75, 0.4);
|
||||
border-radius: 3px;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user