-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
39 lines (38 loc) · 1.09 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
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: '#121212', // Rich black
light: '#1E1E1E', // Lighter black
dark: '#0A0A0A', // Darker black
},
accent: {
green: {
DEFAULT: '#28A745', // Rich modern green
dark: '#1E7E34', // Darker green for primary actions
light: '#34CE57', // Lighter green for hover states
},
orange: {
DEFAULT: '#FF5722', // Vibrant orange
light: '#FF7F50', // Coral orange
dark: '#B33810', // Deep orange
},
gold: '#FFA000', // Warm gold
},
neutral: {
light: '#F5F5F5', // Almost white
DEFAULT: '#A0A0A0', // Medium gray
dark: '#404040', // Dark gray
}
},
},
},
plugins: [],
} satisfies Config;