-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.23 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./*.php",
"./assets/**/*.{js,css}"
],
theme: {
container: {
center: true,
padding: '1rem',
},
extend: {
colors: {
twitch: {
purple: '#9146FF',
'purple-dark': '#7a2eff',
'purple-light': '#a970ff',
'gray-dark': '#0e0e10',
'gray-medium': '#18181b',
'gray-light': '#1f1f23',
}
},
keyframes: {
gradient: {
'0%': { backgroundPosition: '0% 50%' },
'100%': { backgroundPosition: '100% 50%' }
},
floatUp: {
'0%': {
transform: 'translateY(20px)',
opacity: '0'
},
'100%': {
transform: 'translateY(0)',
opacity: '1'
}
},
slideBg: {
'0%': { backgroundPosition: '0 0' },
'100%': { backgroundPosition: '100% 100%' }
}
},
animation: {
gradient: 'gradient 3s linear infinite',
'float-up': 'floatUp 0.8s ease-out forwards',
'slide-bg': 'slideBg 20s linear infinite',
'pulse-slow': 'pulse 2s ease-in-out infinite'
}
},
},
plugins: [],
}