-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
104 lines (96 loc) · 2.54 KB
/
tailwind.config.ts
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
safelist: ["h3-inactive"],
theme: {
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
"primary-gradient":
"radial-gradient(120.62% 683.52% at 110.84% 156.15%, #C5FFFD 6.84%, rgba(111, 255, 194, 0.760784) 48.36%, #00DABA 100%)",
gradientbg:
"linear-gradient(129.93deg, rgba(175, 175, 175, 0.12) 16.6%, rgba(17, 243, 179, 0.12) 90.65%)",
darkbg:
"linear-gradient(314.92deg, rgba(17, 39, 49, 0.4) 28.08%, rgba(9, 9, 9, 0.4) 97.04%)",
"colorful-gradient":
"linear-gradient(270deg, #00DABA 8%, #4AA1A3 23%, #8A7191 36%, #B15485 46%, #C14981 51%, #A73993 62%, #8726AA 78%, #741BB7 91%, #6D17BD 100%)",
},
colors: {
black1: "#010101",
black2: "#202025",
gray1: "#555555",
gray2: "#454545",
gray3: "#706F6F",
gray4: "#4B4B4B",
gray5: "#AEAEAE",
white1: "#F1F4F4",
white2: "#F7FBFA",
white3: "#E1E2E2",
blue1: "#1966F7",
aqua1: "#00D0C6",
aqua2: "#6DD3C2",
aqua3: "#BCE6EC",
purple1: "#7839FF",
purple2: "#B9A9FB",
orange1: "#FE9950",
red1: "#D92D20",
red2: "#FF4A4A",
},
fontSize: {
"10": "10px",
"12": "12px",
"14": "14px",
"13": "13px",
"15": "15px",
"16": "16px",
"17": "17px",
"18": "18px",
"20": "20px",
"22": "22px",
"24": "24px",
"26": "26px",
"27": "27px",
"30": "30px",
"32": "32px",
"38": "38px",
"40": "40px",
"48": "48px",
"64": "64px",
"80": "80px",
"114": "114px",
},
borderRadius: {
"10": "10px",
"2.5xl": "1.25rem",
},
lineHeight: {
"11": "44px",
"12": "48px",
"16": "64px",
"20": "80px",
},
padding: {
"7.5": "30px",
"4.5": "18px",
"21": "84px",
},
margin: {
"7.5": "30px",
"4.5": "18px",
"12.5": "50px",
"21": "84px",
},
screens: {
xs: "450px",
},
},
},
plugins: [],
}
export default config