-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
40 lines (39 loc) · 1.19 KB
/
tailwind.config.ts
File metadata and controls
40 lines (39 loc) · 1.19 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
import type { Config } from "tailwindcss";
const config: Config = {
darkMode: "class",
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
fontFamily: {
mono: ["var(--font-mono)", "JetBrains Mono", "Fira Code", "monospace"],
heading: ["var(--font-heading)", "Space Mono", "monospace"],
pacifico: ["var(--font-pacifico)", "Pacifico", "cursive"],
},
colors: {
terminal: {
green: "#00ff41",
"green-dim": "#00cc33",
"green-dark": "#003300",
"green-bg": "#001a00",
black: "#000000",
surface: "#0a0a0a",
border: "#00ff4133",
},
},
animation: {
"boot-line": "boot-line 0.4s ease-out forwards",
"cursor-blink": "cursor-blink 1s step-end infinite",
flicker: "flicker 4s ease-in-out infinite",
"pulse-green": "pulse-green 2s ease-in-out infinite",
"grid-reveal": "grid-reveal 0.6s ease-out forwards",
"slide-up": "slide-up 0.3s ease-out forwards",
},
},
},
plugins: [],
};
export default config;