-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.19 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}"
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
light: '#4f83cc',
DEFAULT: '#1565c0',
dark: '#0d47a1'
},
secondary: {
light: '#ffb74d',
DEFAULT: '#fb8c00',
dark: '#ef6c00'
},
industrial: {
bg: '#f4f7fa',
surface: '#ffffff',
border: '#d1d9e6',
text: '#333333'
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
mono: ['Fira Code', 'monospace']
},
spacing: {
'128': '32rem',
'144': '36rem'
},
borderRadius: {
'4xl': '2rem'
},
boxShadow: {
'outline-blue': '0 0 0 3px rgba(21, 101, 192, 0.5)'
}
}
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio')
]
};