-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
97 lines (90 loc) · 2.51 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
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}",
],
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',
white1: '#F1F4F4',
blue1: '#1966F7',
aqua1: '#00D0C6',
aqua2: '#6DD3C2',
aqua3:'#BCE6EC',
purple1:'#7839FF',
purple2:'#B9A9FB',
orange1:'#DC6803',
red1:'#D92D20'
},
fontSize:{
'10': '10px',
'12': '12px',
'14': '14px',
'15': '15px',
'16': '16px',
'17': '17px',
'18': '18px',
'20': '20px',
'22': '22px',
'24': '24px',
'26': '26px',
'27': '27px',
'30': '30px',
'32': '32px',
'40': '40px',
'48': '48px',
'64': '64px',
'80': '80px',
'114': '114px'
},
fontFamily: {
"int-light": "interLight",
"int-regular": "interRegular",
"int-medium": "interMedium",
"int-semibold": "interSemiBold",
"int-bold": "interBold",
"int-extrabold": "interExtraBold",
},
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;