-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.15 KB
/
tailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.15 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: '#1E7A4A',
primaryDark: '#166339',
primaryLight: '#48A673',
secondary: '#3D6F6C',
accent: '#FF9D45',
success: '#34D399',
warning: '#FBBF24',
error: '#F87171',
info: '#60A5FA',
bgMain: '#F5F9F7',
bgCard: '#F0F7EB',
textPrimary: '#0F1E0C',
textSecondary: '#4A5C54',
border: '#E2EAE5',
},
fontFamily: {
sans: ['Poppins', 'sans-serif'],
},
fontSize: {
'xs': '12px',
'sm': '14px',
'base': '16px',
'lg': '18px',
'xl': '20px',
'2xl': '24px',
'3xl': '32px',
},
spacing: {
'xs': '4px',
'sm': '8px',
'md': '16px',
'lg': '24px',
'xl': '32px',
'2xl': '48px',
},
borderRadius: {
'sm': '4px',
'md': '8px',
'lg': '16px',
'xl': '24px',
'2xl': '32px',
'full': '9999px',
},
},
},
plugins: [],
};