-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
61 lines (60 loc) · 1.67 KB
/
index.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
const colors = require('./lib/theme/colors');
const plugins = require('./lib/plugins');
module.exports = () => {
return {
theme: {
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1280px',
},
fontFamily: {
sans: ['IBM Plex Sans', 'sans-serif'],
mono: ['IBM Plex Mono', 'monospace'],
},
extend: {
colors,
lineHeight: {
normal: '1.7',
relaxed: '1.85',
},
minWidth: {
initial: 'initial',
},
maxWidth: (theme) => {
return {
'screen-xl': theme('screens.xl'),
};
},
width: {
84: '21rem',
},
zIndex: {
51: 51,
100: 100,
modal: 200,
},
inset: (theme) => {
return {
16: theme('spacing.16'),
};
},
fontSize: {
pagetitle: '2.4em',
table: '.95em',
xxs: '.72rem',
base: '1rem',
h1: '1.9em',
h2: '1.5em',
h3: '1.15em',
h4: '1.2em',
},
listStyleType: {
square: 'square',
},
},
},
plugins,
};
};