Hacker News Better Ghosted Comments

Makes ghosted comments easier to read, but still obviously ghosted/different.

// ==UserScript==
// @name        Hacker News Better Ghosted Comments
// @namespace   http://github.com/shmup
// @description Makes ghosted comments easier to read, but still obviously ghosted/different.
// @include     https://news.ycombinator.com/item?id=*
// @include     http://news.ycombinator.com/item?id=*
// @include     https://news.ycombinator.com/threads?id=*
// @include     http://news.ycombinator.com/threads?id=*
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @version     1.0
// ==/UserScript==

var foregroundColor = '#9016c9';
var ghostedComments = $('.cdd, .cdd a');

ghostedComments.css({
    'color': foregroundColor,
});