-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
70 lines (68 loc) · 1.61 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary:
{
"50": "#f9fafb", // Very light black, almost white
"100": "#f3f4f6", // Very light gray
"200": "#e5e7eb", // Light gray
"300": "#d1d5db", // Gray
"400": "#9ca3af", // Medium gray
"500": "#6b7280", // Dark gray
"600": "#4b5563", // Darker gray
"700": "#374151", // Dark grayish black
"800": "#1f2937", // Very dark black
"900": "#111827", // Near black
"950": "#0a0e13" // Almost pure black
},
background: "var(--background)",
foreground: "var(--foreground)",
},
},
fontFamily: {
'body': [
'Inter',
'ui-sans-serif',
'system-ui',
'-apple-system',
'system-ui',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji'
],
'sans': [
'Inter',
'ui-sans-serif',
'system-ui',
'-apple-system',
'system-ui',
'Segoe UI',
'Roboto',
'Helvetica Neue',
'Arial',
'Noto Sans',
'sans-serif',
'Apple Color Emoji',
'Segoe UI Emoji',
'Segoe UI Symbol',
'Noto Color Emoji'
]
}
},
plugins: [],
};
export default config;