Forum     

Go Back   Digit Technology Discussion Forum > Community > Tutorials
Register FAQ Calendar Mark Forums Read

Tutorials This section offers tutorials and How to's on just about anything related to computers and IT. Note: All tutorials are courtesy the posters and not verified by Digit


Closed Thread
 
LinkBack Thread Tools Display Modes
Old 30-05-2007, 04:41 PM   #1 (permalink)
dá ûnrêäl Kiñg
 
zyberboy's Avatar
 
Join Date: Feb 2006
Location: kerala/calicut
Posts: 992
Smile Making Google Black and more.....


This tutorial is for those who dont like white and other high contrast light colors as backgrounds on webpages.
White color causes eye stain and also monitor consumes more power when displaying light colors.Even if you does't feel anything your eyes and brain are working more.

This is done in Firefox with "GraseMonkey"addon & greasemonkey script

1. First install GreaseMonkey from here and restart FireFox
https://addons.mozilla.org/en-US/firefox/addon/748

2. Then install this script from
http://userscripts.org/scripts/show/6205

The default color change in this script is from white to light grey,You can choose your required color by editing the script(for eg to black).
For this once it is installed , go to Tools>GreaseMonkey>ManageUserScript,now you can see your installed script on the left that is "FFFFFF to EBEBEB" select this and click edit,for the first time it will ask for text editor,select your text editor.
Now in the last line of the script you can see the color in hex code

everything[i].style.backgroundColor = "#EBEBEB"; <------ this one #EBEBEB it is light gray

You can change this to black or anything you want by replacing #EBEBEB with hex code of other colores, changing to #000000 will result in black colored google.
Refer here for other colors hex code in this chart http://www.dave-stephens.com/computers/colors.htm

If you also want to change the font color you will need to add extra code to do this.
Add this code given below after the earlier line that is everything[i].style.backgroundColor = "#000000";

var font_tags=document.getElementsByTagName("font");
for(var i=0; i<font_tags.length; i++) {
font_tags[i].color = "#AAAAAA";
}


save and exit your editor,now google will appear as black with font color as gray if your code is correct.
White font on black background may be uncomfortable so use gray font.
black = "#000000"
gray = "#AAAAAA"
or use gray as background ("#AAAAAA") with default font color,which i think is easy on eyes than black page.

The advantage of this java script is that it will change white colored background of all webpages,and also preserve webpages with comfortable colors as it is .You can add more webpages to this script, eg thinkdigit.forum for this u will need to duplicate "else if" statement as given below with rgb color like this.These values 238, 240, 242 & 245, 247, 249 is were script looks for white colored pages,this value is that of thinkdigit.forum which is not pure white.You can pick color of webpages in rgb by using colorzilla addon for firefox .
Add this code after the first "if clause".


else if(
bgcolor[i] == "rgb(238, 240, 242)" ||
bgcolor[i] == "rgb(245, 247, 249)"
)
{
everything[i].style.backgroundColor = "#AAAAAA";


If you only need to change color of only one particular webpage you can use another excellent firefox addon called Platypus https://addons.mozilla.org/en-US/firefox/addon/737
which will allow u to customize a webpage in any way you want and will allow these changes to save as a GreaseMonkey script.

Note: This java script will not change backgrounds of some CSS styles webpages and also white images in the page.
__________________
My Stomach pains:D:D
http://tinyurl.com/32jj4m
zyberboy is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 30-05-2007, 04:58 PM   #2 (permalink)
BlackBerry Guru ! :)
 
BBThumbHealer's Avatar
 
Join Date: Dec 2006
Location: New Delhi , NCR
Posts: 1,270
Default Re: Making Google Black and more.....

thnx..but is this ur own tutorial ? if not,plz mention the source otherwise u'll be in a big trouble !
__________________
Username Changed - BlackBerry7100g To BBThumbHealer ! :D
BBThumbHealer is offline  
Old 31-05-2007, 03:21 PM   #3 (permalink)
Juxcess sucks my balls
 
Pratik Roy's Avatar
 
Join Date: Mar 2007
Location: I used to live with Jxcess since he was gay...
Posts: 23
Lightbulb Re: Making Google Black and more.....

Quote:
Originally Posted by BlackBerry7100g
thnx..but is this ur own tutorial ? if not,plz mention the source otherwise u'll be in a big trouble !
He said the right thing.
Pratik Roy is offline  
Old 31-05-2007, 03:42 PM   #4 (permalink)
dá ûnrêäl Kiñg
 
zyberboy's Avatar
 
Join Date: Feb 2006
Location: kerala/calicut
Posts: 992
Smile Re: Making Google Black and more.....

Quote:
Originally Posted by BlackBerry7100g
thnx..but is this ur own tutorial ? if not,plz mention the source otherwise u'll be in a big trouble !
lol...yeah its mine Sorry for disappointing you
__________________
My Stomach pains:D:D
http://tinyurl.com/32jj4m
zyberboy is offline  
Old 31-05-2007, 03:48 PM   #5 (permalink)
Juxcess sucks my balls
 
Pratik Roy's Avatar
 
Join Date: Mar 2007
Location: I used to live with Jxcess since he was gay...
Posts: 23
Thumbs up Re: Making Google Black and more.....

If you have found this tut yourself then it's great.
Pratik Roy is offline  
Old 02-06-2007, 08:51 PM   #6 (permalink)
BlackBerry Guru ! :)
 
BBThumbHealer's Avatar
 
Join Date: Dec 2006
Location: New Delhi , NCR
Posts: 1,270
Default Re: Making Google Black and more.....

gr8 work done...
__________________
Username Changed - BlackBerry7100g To BBThumbHealer ! :D
BBThumbHealer is offline  
Old 03-06-2007, 02:14 AM   #7 (permalink)
Alpha Geek
 
mobilegeek's Avatar
 
Join Date: Jan 2005
Location: New Delhi ..Phone: Nexus S White, ICE 520D
Posts: 661
Default Re: Making Google Black and more.....

edited ..

thx for posting

Last edited by mobilegeek; 03-06-2007 at 05:47 PM.
mobilegeek is offline  
Old 03-06-2007, 10:14 AM   #8 (permalink)
dá ûnrêäl Kiñg
 
zyberboy's Avatar
 
Join Date: Feb 2006
Location: kerala/calicut
Posts: 992
Default Re: Making Google Black and more.....

^^u itself asked for me to explain how to change font color , so i added more things,i cant post this whole stuff ,explanning how to change font color and how to add more webpages on that thread with diferent topic. so why asking??
__________________
My Stomach pains:D:D
http://tinyurl.com/32jj4m
zyberboy is offline  
Old 03-06-2007, 10:21 AM   #9 (permalink)
MMO Addict
 
amitava82's Avatar
 
Join Date: Jul 2004
Location: Bangalore
Posts: 1,474
Default Re: Making Google Black and more.....

Google blue is the best...
get the extension from here : https://addons.mozilla.org/en-US/firefox/addon/2108
Get the blue google from here: http://userstyles.org/styles/1466

There are many more in that site.
__________________
Steam Profile || Personal Page
Warp drive active. Approaching stargate.
amitava82 is offline  
Old 03-06-2007, 05:42 PM   #10 (permalink)
Alpha Geek
 
mobilegeek's Avatar
 
Join Date: Jan 2005
Location: New Delhi ..Phone: Nexus S White, ICE 520D
Posts: 661
Default Re: Making Google Black and more.....

oops .. sorry then but I thought thats the same thing posted again.
anyways Thanx for this yaar .. my apologies.
let me try this ..
mobilegeek is offline  
Old 03-06-2007, 07:15 PM   #11 (permalink)
dá ûnrêäl Kiñg
 
zyberboy's Avatar
 
Join Date: Feb 2006
Location: kerala/calicut
Posts: 992
Smile Re: Making Google Black and more.....

^^its ok.

@amitava82
thnx amitava82 for that link, really nice styles in that site for changing a style of particular site.
But still no way to change color of pages with only white backgrounds and leaves other sites as it is.Only way to do this till now is to modify the script as i shown here.
__________________
My Stomach pains:D:D
http://tinyurl.com/32jj4m
zyberboy is offline  
Old 03-06-2007, 07:43 PM   #12 (permalink)
Human Spambot
 
aryayush's Avatar
 
Join Date: May 2005
Location: Noida
Posts: 5,601
Default Re: Making Google Black and more.....

Great tutorial.

All I need to do when I want to see "Black Google" is press 'Command + Option + Ctrl + 8'. Ta daa...


Sorry, couldn't resist.


Nice tutorial though.
__________________
Miss me already? See you on Penned Thoughts [http://aayush.me] then. Adios! :)
aryayush is offline  
Old 03-06-2007, 07:47 PM   #13 (permalink)
dá ûnrêäl Kiñg
 
zyberboy's Avatar
 
Join Date: Feb 2006
Location: kerala/calicut
Posts: 992
Default Re: Making Google Black and more.....

^^ But i dont need to press anything wen white background comes, it will auto change☻
__________________
My Stomach pains:D:D
http://tinyurl.com/32jj4m
zyberboy is offline  
Old 03-06-2007, 09:16 PM   #14 (permalink)
Human Spambot
 
aryayush's Avatar
 
Join Date: May 2005
Location: Noida
Posts: 5,601
Default Re: Making Google Black and more.....

Yeah, whatever. I just wanted to show a neat feature.

Like I said, yours is a good tutorial for Windows users.
__________________
Miss me already? See you on Penned Thoughts [http://aayush.me] then. Adios! :)
aryayush is offline  
Old 03-06-2007, 09:17 PM   #15 (permalink)
dá ûnrêäl Kiñg
 
zyberboy's Avatar
 
Join Date: Feb 2006
Location: kerala/calicut
Posts: 992
Default Re: Making Google Black and more.....

^^Thanx Man
__________________
My Stomach pains:D:D
http://tinyurl.com/32jj4m
zyberboy is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Google Black Gigacore Internet & WWW 18 03-06-2007 06:54 PM
Bye Bye Google White (A black search engine that says it's green) rakeshishere Technology News 23 30-05-2007 03:13 PM
Black Google Would Save 3,000 Megawatts a Year anandk Technology News 25 27-02-2007 04:12 PM
Making a black and white picture to colour! nagarjun_424 Tutorials 7 20-06-2006 09:49 PM

 
Latest Threads
- by abhidev
- by chris
- by Tenida
- by clinton

Advertisement




All times are GMT +5.5. The time now is 04:03 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2