-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtailwind.config.js
More file actions
60 lines (60 loc) · 1.36 KB
/
Copy pathtailwind.config.js
File metadata and controls
60 lines (60 loc) · 1.36 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
53
54
55
56
57
58
59
60
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./public/**/*.html", "./public/js/**/*.js"],
theme: {
extend: {
fontFamily: {
mono: ['"IBM Plex Mono"', "monospace"],
},
colors: {
bg: {
DEFAULT: "#0c0b09",
2: "#111009",
3: "#161410",
},
surface: "#1a1814",
border: {
DEFAULT: "#1e1c16",
2: "#2a2820",
},
accent: {
DEFAULT: "#d4a843",
dim: "rgba(212,168,67,0.12)",
glow: "rgba(212,168,67,0.25)",
},
green: {
DEFAULT: "#4a9e6a",
dim: "rgba(74,158,106,0.12)",
},
red: {
DEFAULT: "#c0483a",
dim: "rgba(192,72,58,0.1)",
},
blue: {
DEFAULT: "#4a7ec0",
dim: "rgba(74,126,192,0.12)",
},
ink: {
DEFAULT: "#d4cfc4",
2: "#7a7668",
3: "#524f45",
},
},
animation: {
blink: "blink 1.1s step-end infinite",
pulse2: "pulse2 1.4s ease-in-out infinite",
},
keyframes: {
blink: {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0" },
},
pulse2: {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.2" },
},
},
},
},
plugins: [],
};