-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 1.39 KB
/
tailwind.config.js
File metadata and controls
50 lines (50 loc) · 1.39 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
/** @type {import('tailwindcss').Config} */
module.exports = {
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: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', '"Segoe UI"', 'Roboto', '"Helvetica Neue"', 'Arial', '"Noto Sans"', 'sans-serif'],
},
colors: {
primary: {
light: '#60a5fa', // blue-400
DEFAULT: '#3b82f6', // blue-500
dark: '#2563eb', // blue-600
},
secondary: {
light: '#4ade80', // green-400
DEFAULT: '#22c55e', // green-500
dark: '#16a34a', // green-600
},
accent: {
orange: '#f97316', // orange-500
purple: '#8b5cf6', // violet-500
pink: '#ec4899', // pink-500
},
customGray: {
50: '#f9fafb',
100: '#f3f4f6',
200: '#e5e7eb',
300: '#d1d5db',
400: '#9ca3af',
500: '#6b7280',
600: '#4b5563',
700: '#374151',
800: '#1f2937',
900: '#111827',
},
success: '#22c55e', // green-500
warning: '#facc15', // yellow-400
error: '#ef4444', // red-500
info: '#3b82f6', // blue-500
},
},
},
darkMode: 'class',
plugins: [],
}