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, + }, };