From c25226bc0314af0479e6bcd67903332efd7e934c Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Thu, 16 Apr 2026 17:49:23 -0700 Subject: make hud styling less distracting --- src/app/game/page.styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/game/page.styles.ts b/src/app/game/page.styles.ts index da45d8a..833901d 100644 --- a/src/app/game/page.styles.ts +++ b/src/app/game/page.styles.ts @@ -95,10 +95,10 @@ export const HudStat = styled.div` gap: 2px; `; -export const HudValue = styled.span<{ $color?: string }>` +export const HudValue = styled.span` font-size: 22px; font-weight: 700; - color: ${({ $color }) => $color ?? "#ffffff"}; + color: #ffffff; `; export const HudLabel = styled.span` -- cgit v1.2.3