-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 1000 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
35 lines (34 loc) · 1000 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
34
35
import tailwindScrollbar from "tailwind-scrollbar";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
colors: {
brand: {
purple: "#7C3AED",
indigo: "#6366F1",
blue: "#3B82F6",
},
},
fontFamily: {
sans: ["Outfit", "Inter", "system-ui", "sans-serif"],
montserrat: ["Montserrat", "sans-serif"],
},
animation: {
blob: "blob 7s infinite",
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
},
keyframes: {
blob: {
"0%": { transform: "translate(0px, 0px) scale(1)" },
"33%": { transform: "translate(30px, -50px) scale(1.1)" },
"66%": { transform: "translate(-20px, 20px) scale(0.9)" },
"100%": { transform: "translate(0px, 0px) scale(1)" },
},
},
},
},
plugins: [tailwindScrollbar],
};