-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
106 lines (106 loc) · 2.77 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
module.exports = {
purge: {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}"
]
},
darkMode: "class",
theme: {
backgroundColor: theme => ({
...theme("colors"),
"primary-color": "#56CFE1",
"secondary-color": "#4EA8DE",
"light-color": "#F7F7F7",
"secondary-light-color": "#F0FFFF",
"dark-color": "#3F3F3F",
"secondary-dark-color": "#737380",
}),
textColor: theme => ({
...theme("colors"),
"light-color": "#F7F7F7",
"primary-color": "#56CFE1",
"secondary-color": "#4EA8DE",
"dark-color": "#737380",
}),
extend: {
height: {
"98": "470px",
"100": "480px",
"102": "520px",
"104": "580px",
},
animation: {
"fade-down": 'fadeDown 1s ease-in-out',
"fade-up": 'fadeUp 1s ease-in-out',
"fade-left": 'fadeLeft 1s',
"fade-right": 'fadeRight 1s',
"fade-in": 'fadeIn 3s',
"fade-out": 'fadeOut 3s',
"fade-in-fast": 'fadeIn 1s'
},
keyframes: theme => ({
fadeDown: {
"0%": {
"opacity": "0",
"transform": "translateY(-25%)",
},
"100%": {
"opacity": "1",
"transform": "translateY(0)",
}
},
fadeUp: {
"0%": {
"opacity": "0",
"transform": "translateY(25%)",
},
"100%": {
"opacity": "1",
"transform": "translateY(0)",
}
},
fadeLeft: {
"0%": {
"opacity": "0",
"transform": "translateX(-25%)"
},
"100%": {
"opacity": "1",
"transform": "translateX(0)"
}
},
fadeRight: {
"0%": {
"opacity": "0",
"transform": "translateX(-25%)"
},
"100%": {
"opacity": "1",
"transform": "translateX(0)"
}
},
fadeIn: {
"0%": {
"opacity":"0"
},
"100%": {
"opacity":"1"
}
},
fadeOut: {
"0%": {
"opacity":"1"
},
"100%": {
"opacity":"0"
}
}
}),
},
},
variants: {
extend: {},
},
plugins: [],
}