forked from jmcbroom/development-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (63 loc) · 1.3 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
module.exports = {
content: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: `media`,
theme: {
extend: {
colors: {
'ternblue': '#C8FAF8',
'uploadblue': '#D7E2FF',
'uploadbluehover': '#EDF2FF',
'mustard': '#FFD390',
'highlight': 'rgba(255, 230, 140, 1)',
'dkgray': 'rgb(33, 37, 41)',
'turq': 'rgb(13, 150, 146)',
'seafoam': 'rgba(162, 237, 225, 1)',
'calblue': `rgba(155, 182, 253, 1)`,
'searchblue': 'rgba(128, 163, 251, 1)'
},
fontFamily: {
'dmmono': ['DM Mono'],
'dmsans': ['DM Sans']
},
fontSize: {
'lgish': '20px',
'xl': '24px',
'2xl': '28px',
'tiny': '.875rem'
},
borderWidth: {
1: '1px'
},
padding: {
7.5: '30px',
15: '60px'
},
height: {
7.5: '30px',
15: '60px',
22: '90px',
128: '560px'
},
lineHeight: {
7.5: '30px',
11: '45px',
12: '54px',
13: '60px'
},
margin: {
71: '280px'
},
minHeight: {
'map': '350px'
},
spacing: {
}
},
},
variants: {
extend: {},
},
plugins: [
require('tailwind-underline-utils')
],
}