-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (35 loc) · 1.01 KB
/
tailwind.config.js
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
34
35
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class", // or 'media' or 'class'
theme: {
extend: {
fontFamily: {},
colors: {
"brand-bg": "#101010",
"builderz-green": "#EF5323",
"builderz-blue": "#EF5323",
"brand-main": "#EF5323",
"brand-secondary": "#6EC7FD",
"brand-first": "#492BFF",
},
animation: {},
screens: {},
backgroundImage: {
"brand-image": "url('/background.webp')",
"texture-bg": "url('/texture-bg.svg')",
"card-bg": "linear-gradient(to top, #090A0D, #090A0D)",
"card-bgModal": "linear-gradient(to top, #101010, transparent)",
"apy-gradient": "linear-gradient(to right, #3B42FF, #6557FF)",
},
backgroundColor: {
mesh: "#0a0924",
"light-mesh": "#e6e6f0",
},
},
},
plugins: [require("daisyui"), require("@tailwindcss/forms")],
};