-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
85 lines (85 loc) · 1.75 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
module.exports = {
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
margin: {
floatingr: '0 0 0 calc(50% - 1px)',
},
minHeight: {
520: '520px',
},
maxHeight: {
640: '640px',
calc: 'calc(100vh - 150px)',
},
colors: {
primary: {
light: '#ffebee',
DEFAULT: '#ffcdd2',
dark: '#ef9a9a',
},
secondary: {
light: '#e0f2f1',
DEFAULT: '#b2dfdb',
dark: '#80cbc4',
},
black: {
'op-3': 'rgba(0,0,0,0.3)',
'op-5': 'rgba(0,0,0,0.5)',
'op-7': 'rgba(0,0,0,0.7)',
},
google: {
DEFAULT: '#ffffff',
dark: '#4285f4',
},
kakao: {
DEFAULT: '#FEE500',
dark: '#ffd900',
},
},
borderRadius: {
50: '50%',
},
zIndex: {
100: 100,
110: 110,
},
keyframes: {
run: {
'0%': {
right: '-20px',
bottom: '-7px',
},
'100%': {
right: '100%',
bottom: '-7px',
},
},
},
animation: {
running: 'run 30s ease-in-out infinite, bounce 1s ease-in-out infinite',
},
backgroundImage: theme => ({
'rabbit-turtle': "url('/images/background.png')",
}),
maxWidth: {
'2/3': '66%',
},
spacing: {
448: '28rem',
512: '32rem',
400: '25rem',
},
},
screen: {
desktop: '1280px',
},
},
variants: {
extend: {
animation: ['hover', 'focus'],
},
},
plugins: [],
};