-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
80 lines (80 loc) · 1.87 KB
/
tailwind.config.js
File metadata and controls
80 lines (80 loc) · 1.87 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: {
50: '#FDEEEE',
100: '#FADCDC',
200: '#F6BABA',
300: '#F19797',
400: '#ED7575',
500: '#E85252',
600: '#E63946', // Main primary color
700: '#D42232',
800: '#B51A29',
900: '#97121F',
},
secondary: {
50: '#EDF5FA',
100: '#DBEAF5',
200: '#B8D5EB',
300: '#94C1E0',
400: '#71ACD6',
500: '#4D97CB',
600: '#457B9D', // Main secondary color
700: '#366380',
800: '#264A62',
900: '#173244',
},
accent: {
50: '#F0F8F9',
100: '#E0F1F2',
200: '#C1E3E6',
300: '#A3D6D9',
400: '#84C8CD',
500: '#A8DADC', // Main accent color
600: '#60B2B7',
700: '#478F93',
800: '#2F6C70',
900: '#17494C',
},
success: {
400: '#4ade80',
500: '#22c55e',
},
warning: {
400: '#facc15',
500: '#eab308',
},
error: {
400: '#f87171',
500: '#ef4444',
},
neutral: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
},
},
fontFamily: {
sans: ['"Inter"', 'system-ui', '-apple-system', 'sans-serif'],
},
spacing: {
'128': '32rem',
},
animation: {
'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
},
},
plugins: [],
};