-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (49 loc) · 1.07 KB
/
tailwind.config.js
File metadata and controls
49 lines (49 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
keyframes: {
typing: {
"0%": {
width: "0%",
visibility: "hidden"
},
"100%": {
width: "100%"
}
},
blink: {
"50%": {
borderColor: "transparent"
},
"100%": {
borderColor: "white"
}
},
marquee: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' }
}
},
animation: {
typing: "typing 3s steps(20), blink .7s infinite",
marquee: "marquee 30s linear infinite"
},
colors: {
bar_base: "#ffa700",
bar_base_light: "#ffde1a",
bar_base_dark: "#ff7400",
garage_darker: "#03045e",
garage_dark: "#03045e",
garage: "#0077b6",
garage_light: "#0096c7",
garage_lighter: "#00b4d8",
}
},
},
plugins: [],
}