-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
42 lines (41 loc) · 1.22 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
purge: false,
theme: {
extend: {
colors: {
'digitalocean-blue': '#0080ff',
'fathom-indigo': '#533feb',
'ohdear-red': '#e32929',
'ploi-blue': '#0e3283',
},
fontFamily: {
fathom: [
'-apple-system',
'BlinkMacSystemFont',
'"San Francisco"',
'"Helvetica Neue"',
'Helvetica',
'Ubuntu',
'Roboto',
'Noto',
'"Segoe UI"',
'Arial',
'sans-serif',
],
helvetica: ['"Helvetica Neue"', 'Helvetica', 'system-ui', '-apple-system', 'BlinkMacSystemFont'],
},
minHeight: {
'(screen-16)': 'calc(100vh - 4rem)',
},
maxHeight: {
'(screen-22)': 'calc(100vh - 5.5rem)',
},
maxWidth: {
'screen-xl': defaultTheme.screens.xl,
},
},
},
variants: {},
plugins: [],
};