-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.16 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: "class",
theme: {
extend: {
lineHeight: {
lHeight: "75px",
},
gradientColorStopPositions: {
37: "37%",
67: "67%",
},
linearGradients: {
"custom-gradient": [
"0% 0%",
"37% 0%",
"67% 0%",
"100% 0%",
"#ff0000",
"#00ff00",
"#0000ff",
"#ffff00",
],
},
height: {
custom1: "100vh",
200: "90px",
80: "80px",
50: "50px",
},
width: {
"width-full": "100%",
"width-100": "100px",
"width-200": "200px",
50: "50px",
},
fontSize: {
"2xl": "1.75rem",
smxl: "18px",
"4xl": "3.8rem",
"3xl": "1.5rem",
"5xl": "3rem",
"1xl": "1.4rem",
sm: "14px", // Another custom size
"6xl": "4.8rem", // Another custom size
lxl: "130px",
"4xl": "2.2rem",
"2.5xl": "1.8rem",
"4.5xl": "2.8rem",
},
fontFamily: {
body: ["GT Walsheim Trial"],
},
colors: {
white10: "white",
dark10: "black",
yellow500: "#F7C926",
shallowgray: "#F9F9F9",
},
},
},
plugins: [require("tailwindcss-gradients")],
};