-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
110 lines (98 loc) · 2.86 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,jsx,ts,tsx}"
],
theme: {
extend: {
spacing: {
'out': '120vh',
'footer-thmb-m': '52px',
'footer-thmb': '60px'
},
height: {
'header-m': '48px',
'header': '56px',
'navbar-m': '48px',
'footer-m': '64px',
'footer': '72px',
},
width: {
'navbar': '144px',
},
inset: {
'footer-b-m': '52px',
'header-height': '56px'
},
margin: {
'main-t-m': '48px',
'main-b-m': '128px',
'main-t': '56px',
'main-b': '72px',
'main-l': '144px'
},
zIndex: {
'playerpage': '100',
'header': '50',
'footer': '40',
'navbar': '30'
},
keyframes: {
show: {
'0%': { top: "120vh" },
'100%': { top: '0' }
},
hide: {
'0%': { top: '0' },
'100%': { top: "120vh" }
},
blink: {
'0%': { opacity: 1 },
'50%': { opacity: 0 },
'100%': { opacity: 1 }
},
'blink-once': {
'0%': { opacity: 0 },
'100%': { opacity: 1 }
}
},
animation: {
'show': 'show 500ms',
'hide': 'hide 500ms',
'blink': 'blink 1s infinite',
'blink-once': 'blink-once 3s',
'blink-once-1s': 'blink-once 1s'
},
colors: {
'primary-light': '#00F0FF',
'primary-dark': '#1400FF',
'primary-light-35': 'rgba(0, 240, 255, 0.35)',
'primary-dark-35': 'rgba(20, 0, 255, 0.35)'
},
boxShadow: {
'footer': 'rgba(255, 255, 255, 0.25) 0 0 20px'
},
gridTemplateColumns: {
'feed': 'repeat(auto-fit, minmax(20rem, 1fr))'
},
backgroundColor: {
'card': '#181818',
'input': '#0f0f0f'
},
borderColor: {
'card': '#4d4d4d',
'input': '#303030'
},
textColor: {
'placeholder': '#848484'
}
},
screens: {
'tablet': '540px',
'laptop': '780px',
'desktop': '1280px'
}
},
plugins: [],
};