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

Configure Feed

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

at c5c4e8bb133c8eeebe222d54095bc7e4e8f60782 23 lines 919 B 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 */ 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 /* colors */ 11 --dc-cs: light; /* light/dark scrollbars, inputs, etc */ 12 --dc-tx-1: #000000; /* primary text */ 13 --dc-tx-2: #1a1a1a; /* secondary text */ 14 --dc-bg-1: #fafafa; /* main background */ 15 --dc-bg-2: #fff; /* secondary background */ 16 --dc-bg-3: #ebebeb; /* outlines */ 17 --dc-lk-1: #0068d6; /* link text */ 18 --dc-lkb-1: #0072f5; /* link button background */ 19 --dc-lkb-2: #0062d1; /* link button background (hover) */ 20 --dc-lkb-tx: #ededed; /* link button text */ 21 --dc-ac-1: #8e4ec6; /* accent color */ 22 --dc-ac-tx: #ededed; /* accent color text */ 23}