diff --git a/src/tailwindTheme.ts b/src/tailwindTheme.ts index b690220..fc032cf 100644 --- a/src/tailwindTheme.ts +++ b/src/tailwindTheme.ts @@ -1,6 +1,5 @@ -// import typography from "@tailwindcss/typography"; import type { Config } from "tailwindcss"; -// import animate from "tailwindcss-animate"; + export const tailwindTheme = { darkMode: ["class", ".theme-mode-dark"], theme: { @@ -73,5 +72,5 @@ export const tailwindTheme = { }, }, }, - // plugins: [animate, typography], + plugins: [require("tailwindcss-animate"), require("@tailwindcss/typography")], } satisfies Partial;