-
Notifications
You must be signed in to change notification settings - Fork 61
/
tailwind.config.cjs
65 lines (58 loc) · 1.23 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.html", "./src/**/*.vue"],
theme: {
extend: {
fontFamily: {
handwritten: ["Amatic SC", "sans-serif"]
},
scale: {
flip: "-1"
},
maxWidth: {
"24": "6rem"
},
keyframes: {
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" }
}
},
animation: {
wiggle: "wiggle 250ms ease-in-out 3"
},
transitionDelay: {
"50": "0ms",
"100": "0ms",
"200": "25ms",
"300": "25ms",
"400": "50ms",
"500": "50ms",
"600": "75ms",
"700": "75ms",
"800": "100ms",
"900": "100ms"
},
colors: {
primary: {
"50": "#f3fbfb",
"100": "#e6f6f8",
"200": "#c1eaed",
"300": "#9cdde1",
"400": "#52c3cb",
"500": "#08a9b5",
"600": "#0798a3",
"700": "#067f88",
"800": "#05656d",
"900": "#034448"
}
}
}
},
variants: {
extend: {
zIndex: ["hover"]
}
},
plugins: [require("@tailwindcss/forms")]
}