-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (39 loc) · 1005 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./build/*.html", "./build/js/*.js"],
theme: {
extend: {
colors: {
papayawhip: {
light: '#fef4e4',
DEFAULT: '#ffefd5',
dark: '#fee5bc',
},
'blue': '#1fb6ff',
'purple': '#7e5bef',
'pink': '#ff49db',
'orange': '#ff7849',
'green': '#13ce66',
'yellow': '#ffc82c',
'gray-dark': '#273444',
'gray': '#8492a6',
'gray-light': '#d3dce6',
},
screens: {
'widescreen': { 'raw': '(min-aspect-ratio: 3/2)' },
'tallscreen': { 'raw': '(max-aspect-ratio: 13/20)' },
},
keyframes: {
'open-menu': {
'0%': { transform: 'scaleY(0)' },
'80%': { transform: 'scaleY(1.2)' },
'100%': { transform: 'scaleY(1)' },
},
},
animation: {
'open-menu': 'open-menu 0.5s ease-in-out forwards',
}
},
},
plugins: [],
}