From d2954dfc984d1f5779ef3e31958bc6381a1301bf Mon Sep 17 00:00:00 2001 From: hook-lord Date: Fri, 6 Dec 2024 09:56:33 +0100 Subject: [PATCH] updated tailwind config --- tailwind.config.js | 56 +++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index cce55b6..3615edc 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,31 +1,31 @@ /** @type {import('tailwindcss').Config} */ export default { - content: [ - './src/**/*.{html,js,svelte,ts}', - './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}' - ], - plugins: [require('flowbite/plugin')], - darkMode: 'class', - theme: { - extend: { - colors: { - // slate - primary: { - 50: '#f8fafc', - 100: '#f1f5f9', - 200: '#e2e8f0', - 300: '#cbd5e1', - 400: '#94a3b8', - 500: '#64748b', - 600: '#475569', - 700: '#334155', - 800: '#1e293b', - 900: '#0f172a' - } - }, - fontFamily: { - jose: ['Josefin Sans', 'sans-serif'] - } - } - } + content: [ + './src/**/*.{html,js,svelte,ts}', + './node_modules/flowbite-svelte/**/*.{html,js,svelte,ts}' + ], + plugins: ['flowbite/plugin'], + darkMode: 'class', + theme: { + extend: { + colors: { + // slate + primary: { + 50: '#f8fafc', + 100: '#f1f5f9', + 200: '#e2e8f0', + 300: '#cbd5e1', + 400: '#94a3b8', + 500: '#64748b', + 600: '#475569', + 700: '#334155', + 800: '#1e293b', + 900: '#0f172a' + } + }, + fontFamily: { + jose: ['Josefin Sans', 'sans-serif'] + } + } + } };