From bd8e3dfa2ec6aeb55afc859bb25469c06c7bf544 Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Thu, 25 Sep 2025 18:53:34 +0530 Subject: [PATCH] feat(tailwind-config): update theme --- tailwind.config.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index ae2cba9..8e9f709 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -2,15 +2,17 @@ import type { Config } from 'tailwindcss'; import type { DefaultColors } from 'tailwindcss/types/generated/colors'; const themeDark = (colors: DefaultColors) => ({ - 50: '#0a0a0a', - 100: '#111111', - 200: '#1c1c1c', + 50: '#111116', + 100: '#1f202b', + 200: '#2d2f3f', + 300: '#3a3c4c', }); const themeLight = (colors: DefaultColors) => ({ - 50: '#fcfcf9', - 100: '#f3f3ee', - 200: '#e8e8e3', + 50: '#ffffff', + 100: '#f1f5f9', + 200: '#c4c7c5', + 300: '#9ca3af', }); const config: Config = {