From a03791bf19df1d1fb353c585209836c1ccccd398 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Thu, 12 Mar 2026 20:36:33 -0700 Subject: [PATCH] team colors: reduce the hue range within a team so its more clear which team they are on --- src/core/configuration/Colors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/configuration/Colors.ts b/src/core/configuration/Colors.ts index 37caba0f3..81b45e622 100644 --- a/src/core/configuration/Colors.ts +++ b/src/core/configuration/Colors.ts @@ -31,8 +31,8 @@ function generateTeamColors(baseColor: Colord): Colord[] { return Array.from({ length: colorCount }, (_, index) => { if (index === 0) return baseColor; - // Spread hues evenly across ±12° band using golden angle within that range - const hueShift = ((index * goldenAngle) % 24) - 12; + // Spread hues evenly across ±6° band using golden angle within that range + const hueShift = ((index * goldenAngle) % 12) - 6; const h = (lch.h + hueShift + 360) % 360; // Chroma oscillates ±10% around the base to add variety without washing out