-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 857 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 857 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
background: "#0f172a",
primary: "#ec4899",
secondary: "#16f2b3",
text: "#ffffff",
"muted-foreground": "#94a3b8",
},
fontFamily: {
mont: ["Montserrat", "sans-serif"],
nun: ["Nunito", "sans-serif"],
fun: ["Funnel Sans", "sans-serif"],
},
boxShadow: {
glow: "0 0 20px rgba(93,163,255,0.5)",
},
keyframes: {
scroll: {
"0%": { transform: "translateX(0)" },
"100%": { transform: "translateX(-50%)" },
},
},
animation: {
scroll: "scroll 20s linear infinite",
},
},
},
plugins: [require("@codaworks/react-glow/tailwind")],
};