-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtailwind.config.js
More file actions
52 lines (52 loc) · 1.44 KB
/
tailwind.config.js
File metadata and controls
52 lines (52 loc) · 1.44 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
darkMode: "class",
theme: {
extend: {
colors: {
parchment: {
50: "#fefcf9",
100: "#faf6f0",
200: "#f5ede0",
300: "#ebe0cc",
400: "#d4c9b0",
500: "#b8a98a",
},
ink: {
DEFAULT: "#3c3632",
light: "#6b5f56",
muted: "#9c8f84",
faint: "#c4b8ad",
},
night: {
DEFAULT: "#1a1614",
surface: "#231f1c",
card: "#2a2522",
border: "#3d3632",
muted: "#78706a",
text: "#e8e0d8",
faint: "#524b45",
},
},
boxShadow: {
card: "0 1px 4px 0 rgba(160, 140, 110, 0.12), 0 1px 2px -1px rgba(160, 140, 110, 0.08)",
"card-hover":
"0 6px 16px 0 rgba(160, 140, 110, 0.16), 0 2px 6px -2px rgba(160, 140, 110, 0.1)",
form: "0 2px 8px 0 rgba(160, 140, 110, 0.1)",
"card-dark": "0 1px 4px 0 rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.2)",
"card-dark-hover":
"0 6px 16px 0 rgba(0, 0, 0, 0.4), 0 2px 6px -2px rgba(0, 0, 0, 0.25)",
"form-dark": "0 2px 8px 0 rgba(0, 0, 0, 0.3)",
},
borderRadius: {
notebook: "14px",
},
},
},
plugins: [],
};