From e12120853a8218e52d5e1e63797fb7025e7d7ee5 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sun, 29 Dec 2024 15:22:44 +0100 Subject: [PATCH] refactor: :fire: Remove old code --- tailwind.config.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index a8624b3..43a1351 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -3,20 +3,6 @@ import typography from "@tailwindcss/typography"; import type { Config } from "tailwindcss"; import animate from "tailwindcss-animate"; -const themeVariables = (color: string) => ({ - 50: `var(--theme-${color}-50)`, - 100: `var(--theme-${color}-100)`, - 200: `var(--theme-${color}-200)`, - 300: `var(--theme-${color}-300)`, - 400: `var(--theme-${color}-400)`, - 500: `var(--theme-${color}-500)`, - 600: `var(--theme-${color}-600)`, - 700: `var(--theme-${color}-700)`, - 800: `var(--theme-${color}-800)`, - 900: `var(--theme-${color}-900)`, - 950: `var(--theme-${color}-950)`, -}); - export default ({ darkMode: "class", safelist: ["dark"],