-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 964 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
39
40
41
42
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./hugo_stats.json"],
theme: {
extend: {
colors: {
cbs: "#72ccf4",
background: "#020617",
accent: "#ff0000",
faded: "#c0c0c0",
border: "#72ccf4",
imageBorder: "#505050",
tag: "#00ff00",
text: "#ffffff",
},
fontFamily: {
postMono: [
"ui-monospace",
"Cascadia Code",
"Source Code Pro",
"Menlo",
"Consolas",
"DejaVu Sans Mono",
"monospace",
],
postSans: [
"ui-rounded",
"Hiragino Maru Gothic ProN",
"Quicksand",
"Comfortaa",
"Manjari",
"Arial Rounded MT",
"Arial Rounded MT Bold",
"Calibri",
"source-sans-pro",
"sans-serif",
],
landingSans: ["system-ui", "sans-serif"],
},
},
},
};