-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (45 loc) · 1.05 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="http://localhost:8080/neutralino.js"></script>
<title>Soliloquy</title>
<style>
html {
height: 100%;
color: var(--fg2);
background-color: var(--bg1);
}
body {
height: 100%;
margin: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
:root {
--bg0: #121212;
--bg1: #212121;
--bg2: #2e2e2e;
--bg3: #383838;
--bg4: #5d5d5d;
--fg0: #747474;
--fg1: #aaaaaa;
--fg2: #e4e4e4;
--blue: #6aacfd;
--green: #bdfc86;
--green-alt: #8abd5a;
--orange: #fcb886;
--orange-alt: #bc8965;
--red: #fe5f88;
--red-alt: #c7446c;
}
a {
color: var(--blue);
text-decoration: none;
}
</style>
</head>
<body>
<script type="module" src="/src/main.ts"></script>
</body>
</html>