web frontend for git (tangled's grandpa)
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

css: dark theme

authored by

Marco Andronaco and committed by
GitHub
03124550 8a0ebe22

+13
+13
static/style.css
··· 12 12 --mono-font: 'SF Mono', SFMono-Regular, ui-monospace, 'DejaVu Sans Mono', 'Roboto Mono', Menlo, Consolas, monospace; 13 13 } 14 14 15 + @media (prefers-color-scheme: dark) { 16 + :root { 17 + color-scheme: dark light; 18 + --light: #181818; 19 + --cyan: #76c7c0; 20 + --light-gray: #333; 21 + --medium-gray: #444; 22 + --gray: #aaa; 23 + --dark: #ddd; 24 + --darker: #f4f4f4; 25 + } 26 + } 27 + 15 28 html { 16 29 background: var(--light); 17 30 -webkit-text-size-adjust: none;