-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
41 lines (40 loc) · 879 Bytes
/
tailwind.config.ts
File metadata and controls
41 lines (40 loc) · 879 Bytes
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
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: {
bg: {
primary: '#0A0A0B',
card: '#141415',
hover: '#1A1A1C',
},
border: {
DEFAULT: '#2A2A2D',
hover: '#3A3A3D',
},
accent: {
DEFAULT: '#7C3AED',
hover: '#8B5CF6',
muted: '#7C3AED20',
},
success: '#10B981',
error: '#EF4444',
warning: '#F59E0B',
text: {
primary: '#FAFAFA',
secondary: '#A1A1AA',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
};
export default config;