I know that I have many times wonder what colors they used behind their emboss on the main google logo. Well, I found that out today via an error message from google, and I don't think I was the only one out there who was wondering the exact colors they use. So here they are:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>Google Logo Colors</title>
<style type="text/css">
#gLogo { font: 64pt Times; }
#gLogo .Blue { color: #0039B6; }
#gLogo .Red { color: #C41200; }
#gLogo .Yellow { color: #F3C518; }
#gLogo .Green { color: #30A72F; }
</style>
</head>
<body>
<span id="gLogo"><span class="Blue">G</span><span class="Red">o</span><span class="Yellow">o</span><span class="Blue">g</span><span class="Green">l</span><span class="Red">e</span></span>
</body>
</html>