terribleMia’s avatarterribleMia’s Twitter Archive—№ 11,265

  1. …in reply to @equinusocio
    equinusocio I use, roughly: /* apply the colors / [data-colors] { background: var(--bg); color: var(--fg); } a { color: var(--a); } /* create themes with vars */ [data-colors=light] { --bg: white; --fg: black; --a: maroon; } [data-colors=dark] { --bg: black; /* etc… */ }