-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
36 lines (36 loc) · 1.08 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
36
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
"tec-yellow": "#DEFB48",
"tec-blue": "#08187e",
"tec-light-blue": "#03b3ff",
},
fontFamily: {
"bai-jamjuree": ['"Bai Jamjuree"', "sans-serif"],
inter: ["Inter", "sans-serif"],
},
fontSize: {
"scale-12": ["12vw", "12vw"],
"9xl": ["7rem", 1],
},
backgroundImage: (theme) => ({
"tec-image-1": "url('/images/TEC-header.svg')",
"tec-image-2": "url('/images/Mission.svg')",
"tec-image-3": "url('/images/Group.svg')",
"tec-image-4": "url('/images/Text1.svg')",
"tec-image-5": "url('/images/Defi-Tefi.svg')",
"tec-image-6": "url('/images/Heading_defi2.svg')",
"tec-image-7": "url('/images/Community.jpg')",
"tec-image-8": "url('/images/Ecosystem.svg')",
}),
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/forms")],
};