Topic: color scheme easy on the eyes |
|
---|---|
Author | Thread |
Bipolar (III) Inmate From: mn |
![]() ![]() ![]() ![]() Do you have a favorite stylesheet that overrides webpage styles? I'm looking for default background colors, and fonts to make pages easier to read. My main problem is black text on white background. |
Paranoid (IV) Inmate From: Umeå, Sweden |
![]() ![]() ![]() ![]() I personally really like the new Vista fonts, http://neosmart.net/blog/2006/a-comprehensive-look-at-the-new-microsoft-fonts/ Particularly, Consolas is perhaps the best monospace font I have ever seen. It's got true bold face instead of faked like Lucida Console. It's distinction between similar characters such as \1lI|i[]!íìîï/, 9g, 6b, 0oO etc. is very good (better than silkscreen, monaco, courier new), and it antialiases crystal clear on both LCD and CRT screens. Perfect for programming with. |
Paranoid (IV) Inmate From: Florida |
![]() ![]() ![]() ![]() |
Maniac (V) Inmate From: there...no..there..... |
![]() ![]() ![]() ![]() I have been using Opera 9.5 since it was posted here and it has a method of using a user created styles as well. |
Bipolar (III) Inmate From: mn |
![]() ![]() ![]() ![]() Thanks for the new font tips. If anyone needs the vista font package its at: microsoft.com/vista fonts package code: @namespace url(http://www.w3.org/1999/xhtml); @-moz-document url-prefix(http://) ,url-prefix(https://) { /* colors: from: http://slinky.imukuppi.org/zenburn/ */ body { background-color: #3F3F3F; color: #C5C5AA; } * { background-color: #3F3F3F; color: #C5C5AA; font-family:calibri; } } |
Paranoid (IV) Inmate From: Norway |
![]() ![]() ![]() ![]() ninmonkeys: quote: This is the one of the tenets of Cascading Style Sheets. That styles cascade and supersed each other. User agents are supposed to include [customizable] default styling and allow the user to add his/her own CSS. |