forked from craigary/nobelium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (69 loc) · 1.61 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
60
61
62
63
64
65
66
67
68
69
70
const BLOG = require("./blog.config");
module.exports = {
mode: "jit",
purge: ["./pages/**/*.js", "./components/**/*.js", "./layouts/**/*.js"],
darkMode: BLOG.appearance === "auto" ? "media" : "class", // or 'media' or 'class'
theme: {
extend: {
colors: {
day: {
DEFAULT: BLOG.lightBackground || "#ffffff",
},
night: {
DEFAULT: BLOG.darkBackground || "#111827",
},
brown: {
50: "#fdf8f6",
100: "#f2e8e5",
200: "#eaddd7",
300: "#e0cec7",
400: "#d2bab0",
500: "#bfa094",
600: "#a18072",
700: "#977669",
800: "#846358",
900: "#43302b",
},
orange: {
50: "#fff7ed",
100: "#ffedd5",
200: "#fed7aa",
300: "#fdba74",
400: "#fb923c",
500: "#f97316",
600: "#ea580c",
700: "#c2410c",
800: "#9a3412",
900: "#7c2d12",
},
neutral: {
50: "#fafafa",
100: "#f5f5f5",
200: "#e5e5e5",
300: "#d4d4d4",
400: "#a3a3a3",
500: "#737373",
600: "#525252",
700: "#404040",
800: "#262626",
900: "#171717",
},
},
fontFamily: {
montserrat: ['"Montserrat"', "sans-serif"],
noEmoji: [
'"IBM Plex Sans"',
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
"sans-serif",
],
},
},
},
variants: {
extend: {},
},
plugins: [],
};