-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
73 lines (72 loc) · 1.89 KB
/
Copy pathtailwind.config.js
File metadata and controls
73 lines (72 loc) · 1.89 KB
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
/**
* @format
* @type {import('tailwindcss').Config}
*/
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
],
darkMode: "class",
theme: {
extend: {
colors: {
card: "#13161D",
ireng: "#191C25",
accent: "#06C790",
},
fontFamily: {
lato: ["Lato"],
},
animation: {
"bounce-slow": "bounce 3.5s linear infinite",
"rotate": 'rotate 10s linear infinite',
},
keyframes: {
marquee: {
'0%': {
transform: 'translateX(0)'
},
'100%': {
transform: 'translateX(-100%)'
},
},
rotate: {
'0%': { transform: 'rotate(0deg) scale(10)' },
'100%': { transform: 'rotate(-360deg) scale(10)' },
},
shake: {
"0%, 100%": { transform: "translateX(0)" },
"25%": { transform: "translateX(-4px)" },
"50%": { transform: "translateX(4px)" },
"75%": { transform: "translateX(-4px)" },
},
slideIn: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(0)' },
},
slideOut: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-100%)' },
},
},
animations: {
shake: "shake 0.4s ease-in-out infinite",
slideIn: 'slideIn 0.5s ease-out forwards',
slideOut: 'slideOut 0.5s ease-in forwards',
'marquee': 'marquee 20s linear infinite',
},
keyframes: {
floating: {
'0%, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(-10px)' },
},
},
animation: {
floating: 'floating 3s ease-in-out infinite',
},
},
},
plugins: [require('rippleui')],
};