lightweight, simple, classless CSS framework inspired by new.css devcss.devins.page
framework lightweight css classless stylesheet
17
fork

Configure Feed

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

at f288522efeab49349f0ca4c8511be3e7e76b7810 51 lines 1.6 kB view raw
1/* theme for dev.css v3, a classless CSS framework - https://github.com/intergrav/dev.css */ 2/* about: a template that you can modify, but with an automatic light/dark mode */ 3/* note: you can remove lines that you want to keep as the dev.css default, such as the font lines */ 4 5:root { 6 /* font families */ 7 --dc-font-sans: sans-serif; /* sans serif */ 8 --dc-font-mono: monospace; /* monospace */ 9 10 /* light colors */ 11 --dc-tx-1: #000000; /* primary text */ 12 --dc-tx-2: #1a1a1a; /* secondary text */ 13 --dc-bg-1: #fafafa; /* main background */ 14 --dc-bg-2: #fff; /* secondary background */ 15 --dc-bg-3: #ebebeb; /* outlines */ 16 --dc-lk-1: #0068d6; /* link text */ 17 --dc-lkb-1: #0072f5; /* link button background */ 18 --dc-lkb-2: #0062d1; /* link button background (hover) */ 19 --dc-lkb-tx: #ededed; /* link button text */ 20 --dc-ac-1: #8e4ec6; /* accent color */ 21 --dc-ac-tx: #ededed; /* accent color text */ 22 23 /* dark colors */ 24 --dc-d-tx-1: #ededed; 25 --dc-d-tx-2: #a1a1a1; 26 --dc-d-bg-1: #000; 27 --dc-d-bg-2: #0a0a0a; 28 --dc-d-bg-3: #2e2e2e; 29 --dc-d-lk-1: #52a8ff; 30 --dc-d-lkb-1: #0072f5; 31 --dc-d-lkb-2: #0062d1; 32 --dc-d-lkb-tx: #ededed; 33 --dc-d-ac-1: #8e4ec6; 34 --dc-d-ac-tx: #ededed; 35} 36 37@media (prefers-color-scheme: dark) { 38 :root { 39 --dc-tx-1: var(--dc-d-tx-1); 40 --dc-tx-2: var(--dc-d-tx-2); 41 --dc-bg-1: var(--dc-d-bg-1); 42 --dc-bg-2: var(--dc-d-bg-2); 43 --dc-bg-3: var(--dc-d-bg-3); 44 --dc-lk-1: var(--dc-d-lk-1); 45 --dc-lkb-1: var(--dc-d-lkb-1); 46 --dc-lkb-2: var(--dc-d-lkb-2); 47 --dc-lkb-tx: var(--dc-d-lkb-tx); 48 --dc-ac-1: var(--dc-d-ac-1); 49 --dc-ac-tx: var(--dc-d-ac-tx); 50 } 51}