From f35f560c3fbc1807668e9bc34e335460f81c6287 Mon Sep 17 00:00:00 2001 From: angel Date: Fri, 20 Jun 2025 03:34:27 +0000 Subject: [PATCH] feat: update hex values for blue and violet theme colors --- lib/theme-colors.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/theme-colors.ts b/lib/theme-colors.ts index d8558cc..4a41bc7 100644 --- a/lib/theme-colors.ts +++ b/lib/theme-colors.ts @@ -3,11 +3,11 @@ export const themeColors = { blue: { background: 'hsl(240, 10%, 3.9%)', // Dark blue background - hex: '#0f0f23' // Hex equivalent for theme-color + hex: '#09090b' // Hex equivalent for theme-color }, violet: { background: 'hsl(224, 71.4%, 4.1%)', // Dark violet background - hex: '#0c0a2e' // Hex equivalent for theme-color + hex: '#030712' // Hex equivalent for theme-color } } as const;