-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
51 lines (50 loc) · 1.03 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
const colors = require('tailwindcss/colors');
module.exports = {
mode: 'jit',
important: true,
purge: [
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
darkMode: false, // or 'media' or 'class'
theme: {
minHeight: {
0: '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
full: '100%',
screen: '100vh',
},
extend: {
width: {
100: '28rem',
110: '30rem',
120: '34rem',
},
colors: {
gray: colors.coolGray,
trueGray: colors.trueGray,
gray: {
850: '#1F2737',
875: '#182030',
950: '#080B10',
},
lime: colors.lime,
orange: colors.orange,
},
scale: {
'-1': '-1',
},
},
fontFamily: {
sans: ['SegoeUI', 'ui-sans-serif', 'system-ui'],
body: ['SegoeUI', 'ui-sans-serif', 'system-ui'],
display: ['SegoeUI', 'ui-sans-serif', 'system-ui'],
},
},
variants: {
extend: {},
},
plugins: [],
};