Ask HN: Where are all of the CSS Themes?
It seems like before anybody ever started making CSS Templates, they should have had a strong foundation of CSS Themes. Stylesheets that reset the browser defaults, then style all of the default elements to be a better browser default. I've been using Drupal's "default.css"(?) just so that development is easier on the eyes. Does anything like this exist?
This alone would really help get my MVP up and running a lot quicker. jQueryUI only handles so much (as it should).
10 comments
[ 3.3 ms ] story [ 30.1 ms ] threadWhat I dislike, is that it forces me to have to start from scratch (reset.css scratch) in order to make a project at all readable/usable.
href="theme-base-renegade.css"
theme-base-renegade would style all of the default markup in its own styleish little way. Whatever that may be: Super padded with big fonts and so on, or incredibly tiny with minimal line-height, font-size, etc..
href="theme-color-grayhaze.css"
theme-color-darkness would specifically color the default markup. Things like th, tr, td, dl, dt dd, etc, would have be darker/brighter than others with their respective font-colors and such to complement the element background-colors.
Since both stylesheets would be styling the default markup - not specific to styles or id's - the two stylesheets could be swappable with other like type themes components and not interfere with one another.
After that.. it's CSS! You could overwrite any one of the many styles used to create that theme. Plus, with all of the tools we have to debug, overriding otherwise desirable styles in order to apply specific/custom ones would be much more convenient.
http://devkick.com/lab/tripoli/sample.php?base=base&visu...
http://devkick.com/lab/tripoli/
It's not just a reset, it's an attempt to be a "better browser default".
Another sample, applied to an existing W3C page: http://devkick.com/lab/tripoli/selectors.php?base=base&v...