12 lines
327 B
HTML
12 lines
327 B
HTML
<style>
|
|
body {
|
|
color-scheme: dark;
|
|
background: #1a1b26;
|
|
}
|
|
</style>
|
|
<input id="input" autofocus>
|
|
<script>
|
|
const input = document.getElementById("input");
|
|
input.addEventListener("input", () => document.title = location.hash = input.value);
|
|
document.title = input.value = decodeURIComponent(location.hash.slice(1));
|
|
</script>
|