diff --git a/tailwind.config.js b/tailwind.config.js index b422e59b..3aba5699 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -3,30 +3,11 @@ import forms from '@tailwindcss/forms'; import typography from '@tailwindcss/typography'; import containerQueries from '@tailwindcss/container-queries'; -/** @type {import('tailwindcss').Config} */ + export default { - // Configure files to scan for Tailwind classes content: [ "./index.html", - "./**/*.{js,ts,jsx,tsx}", // This single pattern recursively scans all folders for relevant files. - ], - // Enable dark mode using a class - darkMode: 'class', - theme: { - extend: { - // By aliasing our brand colors to Tailwind's default palette, we get all the benefits - // of built-in colors, like hover states and opacity modifiers. - colors: { - 'brand-primary': colors.green[500], // formerly #10B981 - 'brand-secondary': colors.green[600], // formerly #059669 - 'brand-dark': colors.green[700], // formerly #047857 - 'brand-light': colors.green[50], // formerly #ecfdf5 - } - }, - }, - plugins: [ - forms, - typography, - containerQueries, + "./App.tsx", // Be very specific for this test ], + // ... rest of your config } \ No newline at end of file