-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 641 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 641 Bytes
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"markata/templates/**/*.{html,js}",
"markout/**/*.{html,js}",
"static/**/*.{html,js}",
],
plugins: [require("@tailwindcss/typography")],
theme: {
extend: {
boxShadow: {
xlc: "0 0 60px 15px rgba(0, 0, 0, 0.3)",
},
saturate: {
25: ".25",
75: ".75",
},
screens: {
print: { raw: "print" },
},
width: {
128: "32rem",
},
boxShadow: {
xlc: "0 0 60px 15px rgba(0, 0, 0, 0.3)",
lgc: "0 0 20px 0px rgba(0, 0, 0, 0.3)",
},
},
},
};