Determined to fix this, I broke out Firebug, the trusty HTML/CSS inspection plugin for Firefox, and found the offending CSS:
.AnqB9d {Then, I created this little Greasemonkey script:
color:#3F586D;
}
function addGlobalStyle(css) {Viola! Readable mailbox items! Check out before and after shots:
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(
'.AnqB9d {' +
' color: black ! important;' +
'}'
);
Before:
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi2E7XA2jCdViwGFec8ADWr3d8Bs5DDZaOoibEcTMMRnV6lDRIO5SI1EnAtqcJxM7WFO_ePSIQIvGpc5P_Pak5okWvbmtOFNaAS6FEwystNIO4VGRO9jg6fZvsDn6rsA6pYqoHoRAGx8cJh/s400/gmail-mountains-bad.jpg)
After:
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJQycAQ76LHkq0OIiIOHl64LKMlfxI7-Vte99iTP1WY_YStPb2WuTp0MMtrBvrKZzxEEBk7dy3ZhWDexAxLDZGX9hx5qrIyABM2iIVjixBN_o4OJsvT9zorHWrRUA3qy8c0FMcAdZRkCpn/s400/gmail-mountains-fixed.jpg)
Related Links:
2 comments:
Kevin,
I added a link to your post from mine for those looking for a solution to the contrast issue.
http://www.newmediacampaigns.com/page/gmails-new-default-theme-is-a-step-backwards-for-usability
Good work with the script!
Thanks, Joel.
Post a Comment