html, body { position: relative; width: 100%; height: 100%; accent-color: var(--fg, #DD5B5A); } body { color: #fff; background-color: #000; margin: 0; padding: 8px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; } ul { list-style: none; /* Remove default bullets */ } ul li::before { content: "➜"; color: var(--fg, #DD5B5A); /* Change the color */ font-weight: bolder; /* If you want it to be bold */ display: inline-block; /* Needed to add space between the bullet and the text */ width: 1em; /* Also needed for space (tweak if needed) */ margin-left: -1em; /* Also needed for space (tweak if needed) */ } a { color: var(--fg, #DD5B5A); text-decoration: none; transition: 0.2s color; } a:hover { color: var(--fg2, #f0a2a2); text-decoration: none; } label { display: block; } input, button, select, textarea { font-family: inherit; font-size: inherit; -webkit-padding: 0.4em 0; padding: 0.4em; margin: 0 0 0.5em 0; box-sizing: border-box; border: 1px solid rgb(68, 68, 68); border-radius: 2px; } input:disabled { color: #ccc; } button { color: rgb(235, 235, 235); background-color: #111111; outline: none; } button:disabled { color: rgb(112, 112, 112); } button:not(:disabled):active { background-color: rgb(68, 68, 68); } button:focus { border-color: rgb(165, 164, 164); }