diff --git a/src/client/hud/layers/SpawnTimer.ts b/src/client/hud/layers/SpawnTimer.ts index 8f712562f..660a1f3e5 100644 --- a/src/client/hud/layers/SpawnTimer.ts +++ b/src/client/hud/layers/SpawnTimer.ts @@ -20,7 +20,7 @@ export class SpawnTimer extends LitElement implements Controller { private ratios = [0]; private _barVisible = false; private colors = [ - "rgb(from var(--color-malibu-blue) r g b / 0.7)", + "rgb(from var(--color-bright-blue) r g b / 0.85)", "rgba(0, 0, 0, 0.5)", ]; @@ -58,7 +58,7 @@ export class SpawnTimer extends LitElement implements Controller { this.ratios = [ this.game.ticks() / this.game.config().numSpawnPhaseTurns(), ]; - this.colors = ["rgb(from var(--color-malibu-blue) r g b / 0.7)"]; + this.colors = ["rgb(from var(--color-bright-blue) r g b / 0.85)"]; } else { this.ratios = []; this.colors = []; diff --git a/src/client/styles.css b/src/client/styles.css index aa1351b60..a388aa246 100644 --- a/src/client/styles.css +++ b/src/client/styles.css @@ -13,6 +13,7 @@ --color-aquarius: #3fa9f5; --color-dawn-blue: #cccccc; --color-bright-white: #ffffff; + --color-bright-blue: #1e90ff; /* Openfront Masters sub-brand */ --color-cyber-yellow: #ffd700;