generated from electron-react-boilerplate/electron-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
67 lines (65 loc) · 1.32 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
65
66
67
const colors = require('tailwindcss/colors');
module.exports = {
content: ['./src/renderer/**/*.{js,jsx,ts,tsx,ejs}'],
theme: {
fontFamily: {
sans: ['"Asap"', 'sans-serif']
},
fontSize: {
'xs': ['0.6875rem', {
fontWeight: '500'
}],
'sm': '0.8125rem',
'base': '1rem',
'lg': ['1.1875rem', {
fontWeight: '500',
lineHeight: '1'
}],
'xl': ['1.4375rem', {
fontWeight: '500',
lineHeight: '1'
}],
'2xl': ['1.75rem', {
fontWeight: '500',
lineHeight: '1'
}],
'3xl': ['2.0625rem', {
fontWeight: '500',
lineHeight: '1'
}]
},
extend: {
colors: {
'cool-gray': {
50: '#F9FAFB',
100: '#F3F4F6',
200: '#E5E7EB',
300: '#D1D5DB',
400: '#9CA3AF',
500: '#6B7280',
600: '#4B5563',
700: '#374151',
800: '#1F2937',
900: '#111827'
}
},
minWidth: {
'side-nav': '11.25rem',
},
height: {
'top-nav': '4.5rem',
},
minHeight: {
'top-nav': '4.5rem',
},
gridTemplateColumns: {
'search-results': 'repeat(auto-fill, minmax(272px, 1fr))'
}
}
},
variants: {
extend: {
},
},
plugins: [],
};