-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.js
More file actions
48 lines (43 loc) · 1.85 KB
/
constants.js
File metadata and controls
48 lines (43 loc) · 1.85 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
const links = {
"resume": "https://docs.google.com/document/d/e/2PACX-1vTgECOhsQwGmPjWnSaJDvr5wQ0014pjiEtYx_YxH3PtB9oA0EZbnLeubPme0k6-EzAC8VhJToafvQ4W/pub",
"github": "https://github.com/th133",
"linkedin": "https://www.linkedin.com/in/taehyun-lee-uw/",
"mail": "mailto:t73lee@edu.uwaterloo.ca"
}
const about_me = "I am a 4th year CS student at the University of Waterloo."
const projects = [
{
"project" : "append-markdown",
"project_detail" : "A program intended to make keeping track of markdown notes easier.",
"url" : "https://github.com/th133/append-markdown"
},
{
"project" : "factor+",
"project_detail" : "A math game but with a parabolic twist.",
"url" : "https://github.com/lyoon1/FactorPlus-Ver.-2"
},
{
"project" : "community-bot",
"project_detail" : "A Discord bot that tries to bring community essential functions to Discord, such as creating events.",
"url" : "https://github.com/th133/community-bot"
},
{
"project" : "orbit",
"project_detail" : "A library that takes insperation from orbiting stars to show requested content.",
"url" : "https://github.com/th133/orbit"
},
];
const colors = {
white : "#f2f2f2",
black : "#212121",
red : "#e86363",
blue : "#95aae5",
yellow: "#e2e868"
};
const themes = [
{"name": "BW", "primary": colors.black, "secondary": colors.white, "highlight": colors.red},
{"name": "WB", "primary": colors.white, "secondary": colors.black, "highlight": colors.red},
{"name": "RW", "primary": colors.red, "secondary": colors.white, "highlight": colors.black},
{"name": "BY", "primary": colors.blue, "secondary": colors.white, "highlight": colors.yellow}
];
const default_theme = themes.find(theme => theme.name == "WB");