forked from pramit-marattha/SupabaseEcommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 855 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
daisyui: {
themes: [
{
mytheme: {
primary: "#9bf2d3",
secondary: "#d33d53",
accent: "#d648d6",
neutral: "#23232F",
"base-100": "#3D3D52",
info: "#89A6F5",
success: "#2ACFB7",
warning: "#DDAE03",
error: "#E87C69",
"holo-100":
"radial-gradient(hsla((220 13% 69%)/.2) 0.5px,hsla((220 17% 17%)/1) 0.5px)",
},
},
],
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
backgroundImage: {
'hero-pattern': "url('/img/hero-pattern.svg')",
'footer-texture': "url('/img/footer-texture.png')",
}
},
plugins: [require("@tailwindcss/forms"), require("daisyui")],
};