-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
115 lines (111 loc) · 2.47 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
body: ['"Montserrat"'],
},
fontSize: {
'64xl': '64px',
},
margin: {
320: '320px',
},
width: {
190: '190px',
275: '275px',
300: '300px',
340: '340px',
350: '350px',
656: '656px',
880: '880px',
508: '508px',
824: '824px',
488: '488px',
},
height: {
80: '80px',
340: '340px',
370: '370px',
420: '420px',
510: '510px',
600: '600px',
685: '685px',
800: '800px',
412: '412px',
75: '75px',
'90vh': '90vh',
},
flex: {
0.7: '0.7 1 0%',
},
maxHeight: {
370: '370px',
},
minWidth: {
210: '210px',
350: '350px',
620: '620px',
},
textColor: {
lightGray: '#F1EFEE',
primary: '#FAFAFA',
secColor: '#efefef',
navColor: '#5251a2',
accent: '#FF4500',
},
backgroundColor: {
mainColor: '#FBF8F9',
navColor: '#5251a2',
navColorLight: '#dedeed',
accent: '#FF4500',
blackOverlay: 'rgba(0, 0 ,0 ,0.7)',
},
borderColor: {
accent: '#FF4500',
navColor: '#5251a2',
navColorLight: '#dedeed',
},
keyframes: {
'slide-in': {
'0%': {
'-webkit-transform': 'translateX(-200px)',
transform: 'translateX(-200px)',
},
'100%': {
'-webkit-transform': 'translateX(0px)',
transform: 'translateX(0px)',
},
},
'slide-fwd': {
'0%': {
'-webkit-transform': 'translateZ(0px)',
transform: 'translateZ(0px)',
},
'100%': {
'-webkit-transform': 'translateZ(160px)',
transform: 'translateZ(160px)',
},
},
},
animation: {
'slide-in': 'slide-in 0.5s ease-out',
'slide-fwd':
' slide-fwd 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) both',
},
transitionProperty: {
height: 'height',
},
},
cursor: {
'zoom-in': 'zoom-in',
pointer: 'pointer',
},
},
variants: {
// backgroundColor: ['active'],
extend: {},
},
plugins: [],
};