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 a0532e8e3572e0b1074ad9dd02fa1dc0435621aa 32 lines 848 B view raw
1/* ==userstyle== 2@name terminal for dev.css 3@description dev.css theme that has a similar look to a computer terminal 4@namespace intergrav 5@version 1.0.0 6@author intergrav <intergrav@proton.me> (https://devins.page) 7@homepageURL https://devcss.devins.page 8@supportURL https://github.com/intergrav/dev.css/issues 9@license MIT 10==/userstyle== */ 11 12:root { 13 /* font families */ 14 /* modified from https://systemfontstack.com */ 15 --dc-font: var(--dc-font-mono); 16 --dc-font-mono: "Geist Mono", Menlo, Consolas, Monaco, Liberation Mono, 17 Lucida Console, monospace; 18 19 /* colors */ 20 --dc-cs: dark; 21 --dc-tx-1: #ffffff; 22 --dc-tx-2: #eeeeee; 23 --dc-bg-1: #001a00; 24 --dc-bg-2: #000; 25 --dc-bg-3: #005800; 26 --dc-lk-1: #00ff00; 27 --dc-lkb-1: #00ff00; 28 --dc-lkb-2: #00d400; 29 --dc-lkb-tx: #000; 30 --dc-ac-1: #00ff00; 31 --dc-ac-tx: #000; 32}