-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolors.html
More file actions
84 lines (73 loc) · 3.38 KB
/
Copy pathcolors.html
File metadata and controls
84 lines (73 loc) · 3.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="/favicon.png">
<meta name="color-scheme" content="dark">
<link rel="stylesheet" href="/src/style.css">
<title>dEstinyOS -> presystem: COLORS</title>
</head>
<body>
<div id="overlay"></div>
<div class="dialog">
<span style="color: crimson">red.</span> the color of the most <span style="color: crimson">passionate love.</span> it is also the color of <span style="color: crimson">blood.</span><br>
<span style="color: dodgerblue">blue.</span> the color of cadences.<br>
<span style="color: deepskyblue">light blue.</span> the color of handmade cadences.<br>
<span style="color: #78B059">green.</span> the color of <span style="color: #78B059">wholeheartedness,</span> and of <span style="color: #78B059">foliage.</span><br>
<span style="color: saddlebrown">brown.</span> the color of <span style="color: saddlebrown">oneself's playfulness.</span><br>
<span style="color: goldenrod">gold.</span> the color of <span style="color: goldenrod">playfulness, with others.</span> this color signifies <span style="color: goldenrod">unforgettable good memories.</span><br>
<span style="color: black; -webkit-text-stroke: white 2px; paint-order: stroke fill;">black.</span> the color of <span style="color: black; -webkit-text-stroke: white 2px; paint-order: stroke fill;">sadness,</span> of <span style="color: black; -webkit-text-stroke: white 2px; paint-order: stroke fill;">loneliness.</span><br>
<span style="color: gray">gray.</span> the color of <span style="color: gray">static,</span> of <span style="color: gray">utter nonsense.</span> it signifies nothing, and nothing signifies it.<br>
<br>
there will be more meanings as time goes on.
</div>
<div class="bgm-container">
<svg
class="play-button paused"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
>
<path d="M14,19H18V5H14M6,19H10V5H6V19Z" />
</svg>
<div class="name" style="display: inline-block; line-height: 1em; vertical-align: center;">
fickle existence<br>
<span style="font-size: 12px;">(legacy)</span>
</div>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
style="margin-right: 6px"
>
<path d="M21,3V15.5A3.5,3.5 0 0,1 17.5,19A3.5,3.5 0 0,1 14,15.5A3.5,3.5 0 0,1 17.5,12C18.04,12 18.55,12.12 19,12.34V6.47L9,8.6V17.5A3.5,3.5 0 0,1 5.5,21A3.5,3.5 0 0,1 2,17.5A3.5,3.5 0 0,1 5.5,14C6.04,14 6.55,14.12 7,14.34V6L21,3Z" />
</svg>
<audio name="player" autoplay loop>
<source src="/resources/fickle existence.ogg">
</audio>
<script id="af5ee321-b157-4a47-a6fb-fead4e205b67">
const self = document.getElementById("af5ee321-b157-4a47-a6fb-fead4e205b67")
const playButton = self.parentElement.querySelector('.play-button')
const player = self.parentElement.children.player
player.volume = 0.75
if (player.paused)
playButton.classList.toggle('paused', true)
player.addEventListener('playing', ev => {
playButton.classList.toggle('paused', false)
})
player.addEventListener('pause', ev => {
playButton.classList.toggle('paused', true)
})
player.addEventListener('canplaythrough', ev => {
player.play()
})
playButton.addEventListener('click', ev => {
if (player.paused)
player.play()
else
player.pause()
})
</script>
</div>
</body>
</html>