-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
tailwind.config.js
53 lines (53 loc) · 1.38 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./ejs-views/**/*.ejs"],
theme: {
extend: {
colors: {
canvas: "var(--canvas)",
primary: "var(--primary)",
accent: "var(--accent)",
secondary: "var(--secondary)",
text: "var(--text)"
},
boxShadow: {
'right': '2px 0px 10px black'
},
typography: {
DEFAULT: {
css: {
'code::before': {
content: 'none'
},
'code::after': {
content: 'none'
},
color: 'var(--text)',
a: { color: 'var(--text)' },
code: {
color: 'var(--text)',
'font-weight': '500'
},
pre: {
'background-color': 'transparent',
'padding': '0',
'border': '2px solid var(--secondary)'
},
strong: { color: 'var(--text)' },
th: { color: 'var(--text)' },
h1: { color: 'var(--text)' },
h2: { color: 'var(--text)' },
h3: { color: 'var(--text)' },
h4: { color: 'var(--text)' },
h5: { color: 'var(--text)' },
h6: { color: 'var(--text)' },
img: { display: 'inline'},
}
}
}
},
},
plugins: [
require('@tailwindcss/typography')
],
}