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:
After:
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