-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
64 lines (64 loc) · 1.34 KB
/
tailwind.config.cjs
File metadata and controls
64 lines (64 loc) · 1.34 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontSize: {
'2xs': '11px',
xs: '13px',
base: '15px',
lg: '17px',
xl: '22px',
},
spacing: {
pc: '1140px',
},
colors: {
main: '#292e33',
secondary: '#31363B',
hightlight: '#ffffff',
body: '#b2b8bf',
conversion: '#36a9dc',
},
maxWidth: {
pc: '1140px',
},
boxShadow: {
header:
'0 4px 6px -1px rgb(0 0 0 / 0.2), 0 2px 4px 0px rgb(0 0 0 / 0.2);',
},
animation: {
progress: 'progress 0.7s ease 0.5s forwards',
fadeIn: 'fadeIn 0.4s ease forwards',
slideIn: 'slideIn 0.4s ease forwards',
},
keyframes: {
progress: {
'0%': {
transform: 'translateX(-100%)',
},
'100%': {
transform: 'translateX(0%)',
},
},
fadeIn: {
'0%': {
opacity: 0,
},
'100%': {
opacity: 1,
},
},
slideIn: {
'0%': {
transform: 'scale(0.8)',
},
'100%': {
transform: 'scale(1)',
},
},
},
},
},
plugins: [],
};