-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
77 lines (76 loc) · 2.43 KB
/
Copy pathtailwind.config.ts
File metadata and controls
77 lines (76 loc) · 2.43 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./lib/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
ink: {
950: "#07080B",
900: "#0A0B0F",
850: "#0E1016",
800: "#13151C",
750: "#171A23",
700: "#1C1F2A",
600: "#262A38",
500: "#363B4C",
400: "#575E75",
300: "#8289A0",
200: "#B4B9CA",
100: "#DDE0EA",
50: "#E8E6E1",
},
accent: {
cyan: "#00E5C7",
amber: "#FFB547",
rose: "#FF4D6D",
violet: "#9E7BFF",
sky: "#5AB5FF",
lime: "#A6F36B",
},
},
fontFamily: {
mono: ["var(--font-jetbrains)", "ui-monospace", "SFMono-Regular", "Menlo", "monospace"],
display: ["var(--font-plex-mono)", "var(--font-jetbrains)", "ui-monospace", "monospace"],
sans: ["var(--font-plex-sans)", "ui-sans-serif", "system-ui", "sans-serif"],
},
keyframes: {
"fade-in": {
"0%": { opacity: "0", transform: "translateY(4px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
"slide-down": {
"0%": { opacity: "0", transform: "translateY(-12px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
shake: {
"0%,100%": { transform: "translateX(0)" },
"20%": { transform: "translateX(-6px)" },
"40%": { transform: "translateX(6px)" },
"60%": { transform: "translateX(-4px)" },
"80%": { transform: "translateX(4px)" },
},
reveal: {
"0%": { opacity: "0", transform: "translateY(10px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
"pulse-glow": {
"0%,100%": { boxShadow: "0 0 0 0 rgba(0,229,199,0.35)" },
"50%": { boxShadow: "0 0 24px 4px rgba(0,229,199,0)" },
},
},
animation: {
"fade-in": "fade-in 260ms cubic-bezier(.22,.61,.36,1)",
"slide-down": "slide-down 260ms cubic-bezier(.22,.61,.36,1)",
shake: "shake 380ms cubic-bezier(.36,.07,.19,.97)",
reveal: "reveal 420ms cubic-bezier(.22,.61,.36,1) both",
"pulse-glow": "pulse-glow 2.4s ease-in-out infinite",
},
},
},
plugins: [],
};
export default config;