From 93befbd8da4c65d49b81d034363373743637a78b Mon Sep 17 00:00:00 2001 From: Marcel Date: Wed, 25 Mar 2026 11:37:12 +0100 Subject: [PATCH] =?UTF-8?q?refactor(css):=20remove=20colors/fonts=20from?= =?UTF-8?q?=20tailwind.config.js=20=E2=80=94=20layout.css=20is=20sole=20th?= =?UTF-8?q?eme=20source?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All color and font definitions live in layout.css via Tailwind 4 @theme. Keeping only the content glob in the config file. Co-Authored-By: Claude Sonnet 4.6 --- frontend/tailwind.config.js | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index 9757a81b..e5b75e5b 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -1,25 +1,4 @@ /** @type {import('tailwindcss').Config} */ export default { - content: ['./src/**/*.{html,js,svelte,ts}'], - theme: { - extend: { - colors: { - brand: { - navy: '#002850', // Header & Hero background - mint: '#A6DAD8', // The Comma accent color - sand: '#E4E2D7', // Content background - white: '#ffffff' - } - }, - fontFamily: { - // Montserrat for UI/Headers, Merriweather for Body text (as established previously) - sans: ['Montserrat', 'sans-serif'], - serif: ['Merriweather', 'serif'] - }, - fontSize: { - huge: '4rem' // For the large stats numbers (e.g., "29", "5000+") - } - } - }, - plugins: [] + content: ['./src/**/*.{html,js,svelte,ts}'] };