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

feat: accent color for input and progress

+7 -2
+7 -2
dev.css
··· 2 /* about: tiny, simple, classless CSS framework in the style of Vercel's Geist design system */ 3 4 /* table of contents 5 - 1. configuration 6 2. dark mode handling 7 3. root color scheme 8 4. css reset ··· 23 19. lists 24 */ 25 26 - /* 1. configuration */ 27 :root { 28 /* font families */ 29 --dc-font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, ··· 376 377 textarea { 378 max-width: 100%; 379 } 380 381 /* 13. code and keyboards */
··· 2 /* about: tiny, simple, classless CSS framework in the style of Vercel's Geist design system */ 3 4 /* table of contents 5 + 1. default configuration 6 2. dark mode handling 7 3. root color scheme 8 4. css reset ··· 23 19. lists 24 */ 25 26 + /* 1. default configuration */ 27 :root { 28 /* font families */ 29 --dc-font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, ··· 376 377 textarea { 378 max-width: 100%; 379 + } 380 + 381 + input, 382 + progress { 383 + accent-color: var(--dc-ac-1); 384 } 385 386 /* 13. code and keyboards */