From 861d50674ace0da0e1777bd2a63578783447d89c Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Fri, 17 Oct 2025 14:35:49 +0530 Subject: [PATCH] feat(theme): fix colors --- tailwind.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index 2dc02e0..ea2865c 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -11,8 +11,8 @@ const themeDark = (colors: DefaultColors) => ({ const themeLight = (colors: DefaultColors) => ({ 50: '#ffffff', 100: '#f6f8fa', - 200: '#d0d7de', - 300: '#afb8c1', + 200: '#e8edf1', + 300: '#d0d7de', }); const config: Config = {