-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
69 lines (66 loc) · 1.57 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
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}'
],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: '#671e75',
blue: '#00acd0',
orange: '#df7400',
teal: '#47d5cd',
red: '#e8352e',
grey: {
light: '#cecfcb',
DEFAULT: '#83847a',
dark: '#2c2e35'
},
white: '#ffffff',
black: '#000000',
green: '#9dcd5a'
},
screens: {
sm: '640px',
md: '768px',
recipe_md: '900px',
lg: '1024px',
recipe_lg: '1100px',
recipe_xl: '1250px',
xl: '1280px',
'2xl': '1536px'
},
extend: {
fontFamily: {
sans: ['Bliss'],
serif: ['Abraham']
},
animation: {
vibrate: 'vibrate 1s ease-in-out 1',
wiggle: 'wiggle 1s ease-in-out infinite',
movement: 'movement 1.5s ease-in infinite'
},
keyframes: {
vibrate: {
'0%, 100%': { transform: 'translateX(0px)' },
'5%, 25%, 45%, 65%, 85%': { transform: 'translateX(2rem)' },
'15%, 35%, 55%, 75%, 95%': { transform: 'translateX(-2rem)' }
},
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' }
},
movement: { '0%, 100%': { top: '0' }, '50%': { top: '10' } }
},
width: {
128: '28rem'
}
}
},
variants: {
margin: ['responsive', 'hover'],
extend: {}
},
plugins: [require('tailwind-scrollbar-hide')]
}