From ec291e9c601f2326c511651ebd68fee8be393f13 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnier Date: Fri, 20 Mar 2026 17:33:47 +0100 Subject: [PATCH] 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> --- css/fvtt-oath-hammer.css | 2 +- less/settlement-sheet.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/fvtt-oath-hammer.css b/css/fvtt-oath-hammer.css index 47d63d4..bf70c40 100644 --- a/css/fvtt-oath-hammer.css +++ b/css/fvtt-oath-hammer.css @@ -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; diff --git a/less/settlement-sheet.less b/less/settlement-sheet.less index 0f4f4ea..12e59c1 100644 --- a/less/settlement-sheet.less +++ b/less/settlement-sheet.less @@ -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;