Skip to content

Commit

Permalink
🐛 fix: tailwind config has been set with primary color
Browse files Browse the repository at this point in the history
  • Loading branch information
d3v1l0n committed Dec 23, 2024
1 parent b943c67 commit 5ff560a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -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,
},
};

0 comments on commit 5ff560a

Please sign in to comment.