feat: add binary-themed quotes (00000001, 0b00000001, +1 in ASCII)

This commit is contained in:
2026-01-14 03:17:40 +01:00
parent c881a7ecf6
commit 637748ddc4

View File

@@ -642,7 +642,10 @@ function runCode() {
"Perfect!",
"Well done!",
"Awesome!",
"Nice work!"
"Nice work!",
"00000001",
"0b00000001",
"00101011 00110001"
];
const randomQuote = crispyQuotes[Math.floor(Math.random() * crispyQuotes.length)];
elements.previewWrapper?.style.setProperty("--crispy-quote", `"${randomQuote}"`);