-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (38 loc) · 927 Bytes
/
tailwind.config.js
File metadata and controls
39 lines (38 loc) · 927 Bytes
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
const colors = require('tailwindcss/colors')
module.exports = {
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/aspect-ratio'),
],
theme: {
fontFamily: {
sans: ['Raleway', 'sans-serif', 'ui-sans-serif', 'system-ui'],
default: ['Raleway', 'sans-serif'],
// sans: ['Inter', 'sans-serif', 'ui-sans-serif', 'system-ui'],
// default: ['Inter', 'sans-serif'],
},
extend: {
colors: {
blue: colors.blue,
orange: {
DEFAULT: '#F37024',
50: '#FFFEFE',
100: '#FEEEE5',
200: '#FBCFB5',
300: '#F8AF85',
400: '#F69054',
500: '#F37024',
600: '#D8570C',
700: '#A84309',
800: '#773007',
900: '#471D04',
},
},
zIndex: {
'-10': '-10',
'-20': '-20',
},
},
},
}