-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (36 loc) · 920 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const disabledCss = {
"blockquote p:first-of-type::before": false,
"blockquote p:last-of-type::after": false,
pre: false,
code: false,
"pre code": false,
"code::before": false,
"code::after": false,
};
module.exports = {
content: ["./_tmp/**/*.{html,js}"],
theme: {
extend: {
fontFamily: {
"fraktion-mono": "fraktion-mono",
"fragment-glare": "fragment-glare, serif",
"fragment-text": "fragment-text, serif",
"fragment-sans": "fragment-sans, sans-serif",
},
colors: {
stone: {
1000: "#141111",
},
},
typography: {
DEFAULT: { css: disabledCss },
sm: { css: disabledCss },
lg: { css: disabledCss },
xl: { css: disabledCss },
"2xl": { css: disabledCss },
},
},
},
plugins: [require("@tailwindcss/typography")],
};