🐛 fix: tailwind config has been set with primary color

This commit is contained in:
RiO
2024-12-23 22:09:48 +05:30
parent b943c6742b
commit 5ff560ae91

View File

@@ -1,7 +1,16 @@
export default { export default {
content: ["./src/**/*.{html,js,jsx,ts,tsx}"], // Adjust paths to your project structure content: [
"./src/**/*.{html,js,jsx,ts,tsx}",
],
theme: { theme: {
extend: {}, extend: {
colors: {
'primary': '#6495ed',
},
},
}, },
plugins: [], plugins: [],
corePlugins: {
preflight: true,
},
}; };