Skip to content

Commit adf5ea9

Browse files
committed
Add UI element for LGTM 2025 display
1 parent 719b21c commit adf5ea9

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/main.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2405,6 +2405,20 @@ muteButtonElement.textContent = isMuted ? "SOUND OFF" : "SOUND ON";
24052405
muteButtonElement.addEventListener("click", toggleMute);
24062406
document.body.appendChild(muteButtonElement);
24072407

2408+
// Add UI for LGTM 2025 text
2409+
const lgtmElement = document.createElement("div");
2410+
lgtmElement.style.position = "fixed";
2411+
lgtmElement.style.bottom = "50px";
2412+
lgtmElement.style.right = "70px";
2413+
lgtmElement.style.color = "#00ff40";
2414+
lgtmElement.style.fontSize = "40px";
2415+
lgtmElement.style.fontFamily = "'DepartureMono', 'Courier New', monospace";
2416+
lgtmElement.style.zIndex = "1000";
2417+
lgtmElement.style.textShadow =
2418+
"0 0 10px #00ff40, 0 0 20px #00ff40, 0 0 40px #00ff40, 0 0 80px #00ff40";
2419+
lgtmElement.textContent = "LGTM 2025";
2420+
document.body.appendChild(lgtmElement);
2421+
24082422
// Add UI for start game prompt
24092423
const startPromptElement = document.createElement("div");
24102424
startPromptElement.style.position = "fixed";

0 commit comments

Comments
 (0)