From 5ff560ae916049eba5681091e85dd7292f7254e3 Mon Sep 17 00:00:00 2001 From: d3v1l0n Date: Mon, 23 Dec 2024 22:09:48 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20tailwind=20config=20has?= =?UTF-8?q?=20been=20set=20with=20primary=20color?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tailwind.config.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tailwind.config.js b/tailwind.config.js index 2cc7b3dc..0d34f4ad 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,7 +1,16 @@ export default { - content: ["./src/**/*.{html,js,jsx,ts,tsx}"], // Adjust paths to your project structure + content: [ + "./src/**/*.{html,js,jsx,ts,tsx}", + ], theme: { - extend: {}, + extend: { + colors: { + 'primary': '#6495ed', + }, + }, }, plugins: [], + corePlugins: { + preflight: true, + }, };