-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
59 lines (59 loc) · 1.42 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
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
colors: {
"bg-1": "#000301",
"bg-2": "#0e180f",
"bg-3": "#0f1e1a",
"bg-4": "#7e7e7e",
"bg-5": "#484d47",
"bg-6": "#d2d2d2",
"border-1": "#1d261d",
"text-1": "#ddd",
"text-2": "#46be35",
red: "#ff483b",
blue: "#4383ff",
purple: "#db29e1",
green: "#1efe5b",
cyan: "#46bcde",
yellow: "#e5c454",
"green-bg": "#1b241d",
"red-bg": "#321819",
"purple-bg": "#241b24",
"cyan-bg": "#1b2424",
"cyan-bg-2": "#121e1e",
"blue-bg": "#1b2224",
"green-bg-2": "#111717",
"green-bg-3": "#00bb00",
"green-bg-4": "#017501",
"blue-bg-4": "#100175",
"red-bg-4": "#75012c",
"purple-bg-4": "#600382",
},
fontFamily: {
unica: ["Unica One", "monospace"],
space: ["Space Mono", "monospace"],
},
extend: {
gridTemplateColumns: {
homeLayout: "22vw auto",
twoStatsLayout: "65% 35%",
threeStatsLayout: "50% 25% 25%",
threeColsLayout: "33% 33% 33%",
algoDataLayout: "60% 40%",
},
spacing: {
gap: "0.5rem",
86: "21rem",
},
backgroundImage: {
graphPattern: "url('/assets/graph-pattern.svg')",
hero: "url('/images/hero.png')",
},
},
},
plugins: [],
};