forked from decosanca/sb1-yrwtzpor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.38 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{css,xml,html,vue,svelte,ts,tsx}'
],
darkMode: ['class', '.ns-dark'],
theme: {
extend: {
colors: {
'no-bindi': {
primary: '#006B3F',
secondary: '#FFB81C',
accent: '#CE1126',
success: '#059669',
warning: '#D97706',
error: '#DC2626',
info: '#2563EB',
gray: {
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827',
}
}
},
fontFamily: {
sans: ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', 'sans-serif'],
},
borderRadius: {
'xl': '20px',
'2xl': '24px',
'3xl': '32px',
},
spacing: {
'18': '4.5rem',
'22': '5.5rem',
'30': '7.5rem',
},
fontSize: {
'xxs': '0.625rem',
'tiny': '0.75rem',
},
height: {
'screen-90': '90vh',
},
maxWidth: {
'screen-xl': '1280px',
},
minHeight: {
'card': '120px',
}
},
},
plugins: [],
corePlugins: {
preflight: false
}
}