-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
69 lines (68 loc) · 1.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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
'md': [
{'min': '0', 'max': '1280px'},
]
},
width:{
container: '1112px'
},
fontFamily: {
WorkSans: 'var(--work-sans)',
SquadaOne: 'var(--squada-one)',
Roboto: 'var(--roboto)',
RobotoMono: 'var(--roboto-mono)',
},
colors: {
black: {
DEFAULT: '#000000',
1: '#131521',
3: '#333333'
},
gray: {
6: "#666666",
7: "#76777C",
8: "#898F8F",
11: '#BDBDBD',
12: "#cccccc",
16: "#e0e0e7",
},
orange: {
15: "#FC7823",
},
blue: {
2: '#2196F3',
3: '#31A4FF',
}
},
borderWidth: {
1: "1px",
3: "3px",
6: "6px",
},
keyframes: {
bounce_1: {
"0%, 100%": {
transform: "translateY(-50%) scaleY(1.2)",
"animation-timing-function": "cubic-bezier(0.8,0,1,1)",
},
"50%": {
transform: "translateY(50%) scaleY(0.6)",
"animation-timing-function": "cubic-bezier(0,0,0.2,1)",
},
},
},
animation: {
bounce_1: "bounce_1 1.5s infinite",
},
},
},
plugins: [],
};