-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
59 lines (58 loc) · 1.65 KB
/
tailwind.config.ts
File metadata and controls
59 lines (58 loc) · 1.65 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
background: "#080808", // Almost black
surface: "#121212", // Dark Gray
foreground: "#ededed", // Off-white text
primary: {
DEFAULT: "#3b82f6", // Blue
foreground: "#ffffff",
},
accent: {
DEFAULT: "#f59e0b", // Amber
foreground: "#000000",
},
border: "#262626", // Neutral 800
// Mappings for compatibility
muted: { DEFAULT: "#262626", foreground: "#a3a3a3" },
secondary: { DEFAULT: "#ffffff", foreground: "#000000" },
cream: "#080808",
noir: "#ffffff",
rust: "#3b82f6",
olive: "#f59e0b",
sand: "#121212",
slate: "#a3a3a3",
},
fontFamily: {
display: ["var(--font-display)"],
body: ["var(--font-body)"],
mono: ["var(--font-mono)"],
},
backgroundImage: {
'grid-pattern': "linear-gradient(to right, #262626 1px, transparent 1px), linear-gradient(to bottom, #262626 1px, transparent 1px)",
},
backgroundSize: {
'grid': '40px 40px',
},
animation: {
'spin-slow': 'spin 12s linear infinite',
'marquee': 'marquee 25s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
},
},
},
plugins: [],
};
export default config;