-
Notifications
You must be signed in to change notification settings - Fork 106
/
tailwind.config.js
59 lines (59 loc) · 1.2 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
module.exports = {
content: ["**/*.eml"],
theme: {
extend: {
colors: {
orange: '#FF9800',
darkOrange: '#EB7F00',
primary: '#181818',
body: '#333333',
darkGrey: '#4D4D4D',
grey: '#7B7B7B',
offwhite: '#F3F3F3',
lightGray: '#B7B7B7',
darkGreen: '#17819A',
blue: '#4DB1B8',
green: '#AFE0D5',
cyan: '#C5F0FB'
},
fontFamily: {
space: ['Space Grotesk'],
inter: ['Inter'],
},
typography: (theme) => ({
DEFAULT: {
css: [{
'code::before': {
content: '""',
},
'code::after': {
content: '""',
},
h1: {
fontWeight: 700,
},
code: {
fontSize: "1em",
},
'h2 code': {
fontSize: "1em",
},
'h3 code': {
fontSize: "1em",
},
}]
},
sm: {
css: {
code: {
fontSize: "1em",
},
},
}
}),
},
},
plugins: [
require("@tailwindcss/typography"),
],
}