-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 1.03 KB
/
Copy pathtailwind.config.js
File metadata and controls
41 lines (41 loc) · 1.03 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ['"SF Pro Text"', "Inter", "system-ui", "-apple-system", "sans-serif"],
display: ['"SF Pro Display"', "Inter", "system-ui", "-apple-system", "sans-serif"],
mono: ['"JetBrains Mono"', "ui-monospace", "SFMono-Regular", "monospace"],
},
colors: {
ink: {
950: "#07080b",
900: "#0a0b10",
850: "#0c0e14",
800: "#0d1017",
750: "#101218",
700: "#16181f",
600: "#1c1f28",
},
accent: {
DEFAULT: "#c6ff3d",
dim: "#8fb22b",
},
},
letterSpacing: {
tightest: "-0.04em",
},
keyframes: {
cmpulse: {
"0%,100%": { opacity: "1" },
"50%": { opacity: "0.4" },
},
},
animation: {
cmpulse: "cmpulse 1.6s ease-in-out infinite",
},
},
},
plugins: [],
};