-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
83 lines (83 loc) · 2.81 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
module.exports = {
darkMode: "class",
mode: "jit",
content: ["./*.html", "./src/**/*.purs"],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
"stripe-y" : "repeating-linear-gradient(0deg,#ffffff00, #ffffff00 2px, #000 2px, #000 4px)",
"stripe-y-2xl" : "repeating-linear-gradient(var(--tw-rotate),#ffffff00, #ffffff00 30px, #00000000 30px, #00000000 60px)",
},
fontFamily: {
Rubic: ["Rubik", "sans-serif"],
ZenMaru: ["Zen Maru Gothic", "sans-serif"],
SourceCodePro: ["Source Code Pro", "monospace"],
PassionOne: [ 'Passion One', 'cursive'],
Bungee: [ 'Bungee', 'cursive'],
default: ["Rubik", "Zen Maru Gothic", "sans-serif"],
},
animation: {
"glitch-text": "glitch-text 3s linear infinite",
"glitch": "glitch 3s linear infinite",
},
keyframes: {
"glitch-text": {
"0%, 9%, 11%, 39%, 41%, 69%, 71%, 79%, 81%, 100%": {
"text-shadow":
"0px 0px 4px white, 0px 0px 3px #00A75B, 0px 0px 3px #96007A",
transform: "translate(0px)",
},
"10%": {
"text-shadow":
"0px 0px 6px white, 5px 0px 3px #00A75B, -3px 0px 3px #96007A",
transform: "translate(-1px)",
},
"40%": {
"text-shadow":
"-5px 0px 3px #96007A, 3px 0px 3px #00A75B",
transform: "translate(2px)",
},
"70%": {
"text-shadow":
"0px 0px 6px white, 10px 0px 3px #00A75B, -3px 0px 3px #96007A",
transform: "translate(-4px)",
},
"80%": {
"text-shadow":
"0px 0px 6px white, -30px 0px 3px #00A75B, 3px 0px 3px #96007A",
transform: "translate(50px)",
},
},
"glitch": {
"0%, 9%, 11%, 39%, 41%, 69%, 71%, 79%, 81%, 100%": {
"box-shadow":
"0px 0px 4px white, 0px 0px 3px #00A75B, 0px 0px 3px #96007A",
transform: "translate(0px)",
},
"10%": {
"box-shadow":
"0px 0px 6px white, 5px 0px 3px #00A75B, -3px 0px 3px #96007A",
transform: "translate(-1px)",
},
"40%": {
"box-shadow":
"-5px 0px 3px #96007A, 3px 0px 3px #00A75B",
transform: "translate(2px)",
},
"70%": {
"box-shadow":
"0px 0px 6px white, 10px 0px 3px #00A75B, -3px 0px 3px #96007A",
transform: "translate(-4px)",
},
"80%": {
"box-shadow":
"0px 0px 6px white, -30px 0px 3px #00A75B, 3px 0px 3px #96007A",
transform: "translate(50px)",
},
},
},
},
},
plugins: [],
};