forked from adamdottv/overlays
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
54 lines (53 loc) · 1.34 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
const { fontFamily } = require("tailwindcss/defaultTheme")
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}"],
theme: {
extend: {
colors: {
crimson: "#F76190",
lime: "#C4F042",
mint: "#25D0AB",
purple: "#8e4ec6",
sky: "#68ddfd",
amber: "#ffb224",
mauve: {
1: "#161618",
2: "#1c1c1f",
3: "#232326",
4: "#28282c",
5: "#2e2e32",
6: "#34343a",
7: "#3e3e44",
8: "#504f57",
9: "#706f78",
10: "#7e7d86",
11: "#a09fa6",
12: "#ededef",
},
border: "rgba(225, 225, 254, 0.15)",
},
fontFamily: {
sans: ["Plus Jakarta Sans", ...fontFamily.sans],
bebas: ["Bebas Neue", ...fontFamily.sans],
holbeard: ["Holbeard Credit", ...fontFamily.sans],
},
keyframes: {
"fade-in-top": {
"0%": {
opacity: "0",
transform: "translateY(-10px)",
},
"100%": {
opacity: "1",
transform: "translateY(0)",
},
},
},
animation: {
"fade-in-top": "fade-in-top 300ms ease-out",
},
},
},
plugins: [require("tailwind-gradient-mask-image")],
}