-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
110 lines (108 loc) · 2.8 KB
/
tailwind.config.ts
File metadata and controls
110 lines (108 loc) · 2.8 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import type { Config } from 'tailwindcss';
const config: Config = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
// ZendFi Brand Colors - Light Lilac Theme
primary: {
DEFAULT: '#8B7BF7',
light: '#ede9fe',
50: '#f5f3ff',
100: '#ede9fe',
200: '#ddd6fe',
300: '#c4b5fd',
400: '#a78bfa',
500: '#8B7BF7',
600: '#7c6dee',
700: '#6d5fd5',
800: '#5b4fb3',
900: '#4a4091',
},
background: {
light: '#ffffff',
dark: '#0d0d14',
},
success: {
50: '#ECFDF5',
100: '#D1FAE5',
200: '#A7F3D0',
300: '#6EE7B7',
400: '#00D924',
500: '#00D66C',
600: '#059669',
700: '#047857',
800: '#065F46',
900: '#064E3B',
},
warning: {
50: '#FFF7ED',
100: '#FFEDD5',
200: '#FED7AA',
300: '#FDBA74',
400: '#FF9500',
500: '#F97316',
600: '#EA580C',
700: '#C2410C',
800: '#9A3412',
900: '#7C2D12',
},
danger: {
50: '#FEF2F2',
100: '#FEE2E2',
200: '#FECACA',
300: '#FCA5A5',
400: '#E25950',
500: '#EF4444',
600: '#DC2626',
700: '#B91C1C',
800: '#991B1B',
900: '#7F1D1D',
},
navy: {
50: '#F6F9FC',
100: '#EEF2FF',
200: '#E3E8EE',
300: '#D1D9E0',
400: '#9BA5B7',
500: '#697386',
600: '#425466',
700: '#1A1F36',
800: '#0A2540',
900: '#030712',
},
},
spacing: {
'4.5': '1.125rem',
'13': '3.25rem',
'15': '3.75rem',
},
fontFamily: {
sans: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'sans-serif'],
display: ['Inter', 'sans-serif'],
mono: ['JetBrains Mono', 'Courier New', 'monospace'],
},
boxShadow: {
'xs': '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
'card': '0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)',
'card-hover': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
'elevated': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
'modal': '0 20px 60px rgba(0, 0, 0, 0.2)',
},
borderRadius: {
'xl': '0.75rem',
'2xl': '1rem',
},
transitionDuration: {
'250': '250ms',
},
},
},
plugins: [],
};
export default config;