From 05b492326b7c3338fae3653cf0a9c634772f4eaa Mon Sep 17 00:00:00 2001 From: WBHarry Date: Thu, 7 Aug 2025 16:30:41 +0200 Subject: [PATCH] Darkened the blue --- module/canvas/placeables/token.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/canvas/placeables/token.mjs b/module/canvas/placeables/token.mjs index 2930bbb3..e6179b10 100644 --- a/module/canvas/placeables/token.mjs +++ b/module/canvas/placeables/token.mjs @@ -67,7 +67,7 @@ export default class DhTokenPlaceable extends foundry.canvas.placeables.Token { // Determine the color to use const fillColor = - number === 0 ? foundry.utils.Color.fromRGB([1, 0, 0]) : foundry.utils.Color.fromRGB([0, 0, 1]); + number === 0 ? foundry.utils.Color.fromRGB([1, 0, 0]) : foundry.utils.Color.fromString('#0032b1'); // Draw the bar const widthUnit = bw / data.max;