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 3886e43a0a1d8bb821c7f20dac9d0585ee5a0524 31 lines 826 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://github.com/intergrav) 7@homepageURL https://github.com/intergrav/dev.css 8@supportURL https://github.com/intergrav/dev.css/issues 9@license MIT 10==/userstyle== */ 11 12:root { 13 /* font families */ 14 --dc-font: var(--dc-font-mono); 15 --dc-font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Consolas, 16 "Liberation Mono", Menlo, monospace; 17 18 /* colors */ 19 --dc-cs: dark; 20 --dc-tx-1: #ffffff; 21 --dc-tx-2: #eeeeee; 22 --dc-bg-1: #001a00; 23 --dc-bg-2: #000; 24 --dc-bg-3: #005800; 25 --dc-lk-1: #00ff00; 26 --dc-lkb-1: #00ff00; 27 --dc-lkb-2: #00d400; 28 --dc-lkb-tx: #000; 29 --dc-ac-1: #00ff00; 30 --dc-ac-tx: #000; 31}