Eye strain in web pages. White backgrounds hurt my eyes.

quizzelbuck

Member
Feb 18, 2008
74
0
0
Guys. Its 2am. I want to be online, but my eyes hurt. Any programs or plugins or options or deals with the devil that will net me a way to get my browser to switch colors around for me? and i really would rather not mess with scripting.
 

quizzelbuck

Member
Feb 18, 2008
74
0
0
Oh, never mind me. I found that the firefox browser has some color options. I basically set every page to default to some thing that looks like maddox.xmission.com all the time. This is a lot better on my eyes.
 

nova2

Senior member
Feb 3, 2006
982
1
0
use this greasemonkey script.
it will be better overall because you will still be able to see certain graphic buttons that firefox would otherwise remove.

Code:
/* -*-mode:JavaScript;coding:latin-1;-*- Time-stamp: "2006-12-08 18:21:57 AKST"
##### This is a Greasemonkey user script.
##### To use it, you need Greasemonkey first: [url="http://greasemonkey.mozdev.org/"]http://greasemonkey.mozdev.org/[/url]
*/
// ==UserScript==
// @name          general_Greyer
// @namespace     [url="http://website.com/"]http://website.com/[/url]
// @description	  original code from All Sites: Page Recolorization by george
// @version       0.0.3
// @include       [url]http://*.*.*[/url]
// @include       [url]http://*.*/*[/url]
// @author        various
// ==/UserScript==

/*
> works on anandtech forums without breaking visited link colors.
> wont remove button graphics so eg, you will see phpbb 3 buttons - unless you use background in place of background-color
*/

(function()
{

   var newSS;
   var styles = '* { background-color: #999 ! important; color: #000 !important } :link, :link * { color: #551a8b !important } :visited, :visited * { color: #2DFE9E !important }';
   
   newSS = window.document.createElement('link');
   newSS.rel='stylesheet';
   newSS.href='data:text/css,' + escape(styles);

	window.document.getElementsByTagName("head")[0].appendChild(newSS);


})();
 

nordloewelabs

Senior member
Mar 18, 2005
542
0
0
an easier solution is to change your monitor settings. adjust brightness & contrast. l always lacrimate at default settings. it will look strong at first, but soon you will out used to it and your eyes will thank you.

 

quizzelbuck

Member
Feb 18, 2008
74
0
0
yeah, adjusting monitor brightness to and fro is out of the question because its way to inconvienient. Wouldnt be able to play games with out fussing over brightness settings.
My compromise is this: IE7 stays normal, Firefox goes black. When i need to see original source of site, IE7. When i need to do long term functioning, Firefox will be my main windows to the internet.
 

quizzelbuck

Member
Feb 18, 2008
74
0
0
tools>options> under the content tab is where to look. Color of background, text, and the like can be found there.
 

law9933

Senior member
Sep 11, 2006
394
0
0
Thank you, I like FF, but don't know all of its abilities. (maybe it is just a remembering issue)
I have seen/hate a website with dark blue background with black lettering (I don't understand that??)
 

Modelworks

Lifer
Feb 22, 2007
16,240
7
76
Blink often.
Sounds simple , but they did studies that show people reading online, or playing games, get so focused on the screen that they don't blink.
It dries out the eyes.

The other thing is to close your eyes for about 5 secs every half hour.

I have to sit in front of a monitor almost 12 hours a day, and both those things helped more than anything else.