// ==UserScript==
// @name           Del.icio.us colorer
// @namespace      http://blog.interlinked.org/
// @description    Changes the weird blue on red popularity count
// @include        http://del.icio.us/*
// ==/UserScript==

function addGlobalStyle(css) {
    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('.post .meta a { color: #444; }');