-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
87 lines (87 loc) · 2.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
p1: '#2EF2FF',
p2: '#3C52D9',
p3: '#C8EA80',
p4: '#EAEDFF',
p5: '#C4CBF5',
s1: '#080D27',
s2: '#0C1838',
s3: '#334679',
s4: '#1959AD',
s5: '#263466',
black: {
DEFAULT: '#000000',
100: '#05091D',
},
},
boxShadow: {
100: '0px 4px 4px rgba(0, 0, 0, 0.25), 0px 16px 24px rgba(0, 0, 0, 0.25), inset 0px 3px 6px #1959AD',
200: '0px 4px 4px rgba(0, 0, 0, 0.25), 0px 16px 24px rgba(0, 0, 0, 0.25), inset 0px 4px 10px #3391FF',
300: '0px 4px 4px rgba(0, 0, 0, 0.25), 0px 16px 24px rgba(0, 0, 0, 0.25), inset 0px 3px 6px #1959AD',
400: 'inset 0px 2px 4px 0 rgba(255, 255, 255, 0.05)',
500: '0px 16px 24px rgba(0, 0, 0, 0.25), 0px -14px 48px rgba(40, 51, 111, 0.7)',
},
fontFamily: {
inter: ['Inter', 'sans-serif'],
poppins: ['Poppins', 'sans-serif'],
},
transitionProperty: {
borderColor: 'border-color',
},
spacing: {
'1/5': '20%',
'2/5': '40%',
'3/5': '60%',
'4/5': '80%',
'3/20': '15%',
'7/20': '35%',
'9/20': '45%',
'11/20': '55%',
'13/20': '65%',
'15/20': '75%',
'17/20': '85%',
'19/20': '95%',
22: '88px',
100: '100px',
512: '512px',
330: '330px',
388: '388px',
400: '400px',
440: '440px',
640: '640px',
960: '960px',
1230: '1230px',
},
zIndex: {
1: '1',
2: '2',
4: '4',
},
lineHeight: {
12: '48px',
},
borderRadius: {
14: '14px',
20: '20px',
40: '40px',
half: '50%',
'7xl': '40px',
},
flex: {
50: '0 0 50%',
320: '1px 0 320px',
300: '0 0 300px',
540: '0 0 540px',
280: '0 0 280px',
256: '0 0 256px',
100: '0 0 100%',
},
},
},
plugins: [],
};