From a83c2bda979990cf3af1467c58715181b033bf65 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Wed, 2 Jul 2025 16:31:00 -0700 Subject: [PATCH] lighten pattern (#1326) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: Make territory pattern less dark, from .2 => .125 darker. It's still very legible and a bit less harsh. I think we should err on the side of being too light, because we can always darken it, but people will be upset if we ever lighten it in the future since they'll feel rug pulled after paying for the pattern. ## Please complete the following: .2 Screenshot 2025-07-02 at 10 53 44 AM .125 Screenshot 2025-07-02 at 11 09 55 AM .1 Screenshot 2025-07-02 at 10 54 47 AM - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [x] I understand that submitting code with bugs that could have been caught through manual testing blocks releases and new features for all contributors ## Please put your Discord username so you can be contacted if a bug or regression is found: evan --- src/client/graphics/layers/TerritoryLayer.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/client/graphics/layers/TerritoryLayer.ts b/src/client/graphics/layers/TerritoryLayer.ts index 21fd3d150..59cc8a79e 100644 --- a/src/client/graphics/layers/TerritoryLayer.ts +++ b/src/client/graphics/layers/TerritoryLayer.ts @@ -317,7 +317,9 @@ export class TerritoryLayer implements Layer { const baseColor = this.theme.territoryColor(owner); const decoder = owner.patternDecoder(); - const color = decoder?.isSet(x, y) ? baseColor.darken(0.2) : baseColor; + const color = decoder?.isSet(x, y) + ? baseColor.darken(0.125) + : baseColor; this.paintTile(tile, color, 150); } }