-
Notifications
You must be signed in to change notification settings - Fork 18
/
tailwind.config.js
67 lines (66 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
65
66
67
module.exports = {
content: [
'./components/**/*.js',
'./components/*.js',
'./pages/**/*.js',
'./pages/*.js',
],
theme: {
fontFamily: {
title: [
'Rubik',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Oxygen',
'Ubuntu',
],
sans: [
'Rubik',
'-apple-system',
'BlinkMacSystemFont',
'Segoe UI',
'Roboto',
'Oxygen',
'Ubuntu',
],
},
minWidth: {
'1/2': '50%',
},
extend: {
colors: {
'type-grey': '#cfcfcf',
'dark-mode-link-blue': '#4CBFFF',
'grey-secondary': '#8f8f8f',
'dark-mode-blockquote-gray': '#363636',
},
spacing: {
28: '7rem',
},
lineHeight: {
tight: 1.2,
},
// fontWeight: { 'preview-desc': '350' },
fontSize: {
'base': '1.2rem',
'lg': '1.3rem',
'xl': '1.4rem',
'2xl': '1.8rem',
'5xl': '2.5rem',
'6xl': '3.5rem',
'7xl': '4rem',
'8xl': '6.25rem',
},
maxWidth: {
'2xl': '44rem',
'3xl': '50rem',
},
boxShadow: {
small: '0 5px 10px rgba(0, 0, 0, 0.12)',
medium: '0 8px 30px rgba(0, 0, 0, 0.12)',
},
},
},
}