From d4f9da34c6c93bcffe6af131423e4a474be0c714 Mon Sep 17 00:00:00 2001 From: ItzCrazyKns <95534749+ItzCrazyKns@users.noreply.github.com> Date: Tue, 7 Oct 2025 15:07:26 +0530 Subject: [PATCH] feat(tailwind-config): update theme --- tailwind.config.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index 8e9f709..b4c6ba0 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -2,17 +2,17 @@ import type { Config } from 'tailwindcss'; import type { DefaultColors } from 'tailwindcss/types/generated/colors'; const themeDark = (colors: DefaultColors) => ({ - 50: '#111116', - 100: '#1f202b', - 200: '#2d2f3f', - 300: '#3a3c4c', + 50: '#0d1117', + 100: '#161b22', + 200: '#21262d', + 300: '#30363d', }); const themeLight = (colors: DefaultColors) => ({ 50: '#ffffff', - 100: '#f1f5f9', - 200: '#c4c7c5', - 300: '#9ca3af', + 100: '#f6f8fa', + 200: '#d0d7de', + 300: '#afb8c1', }); const config: Config = {