I'm trying to change some of the colors the scss file uses and enlarge the text of the legend. I've edited these values in the rickshawgraph.scss file, but it remains unchanged when I launch the dashing rickshaw graph.
https://gist.github.com/jwalton/6614023 Here is my block of edits.
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #dc5945;
$title-color: rgba(126, 126, 126, 0.7);
$moreinfo-color: rgba(126, 126, 126, 0.5);
$tick-color: rgba(0, 0, 0, 0.4);
Here is the block from the original file.
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #dc5945;
$title-color: rgba(255, 255, 255, 0.7);
$moreinfo-color: rgba(255, 255, 255, 0.5);
$tick-color: rgba(0, 0, 0, 0.4);
Any help would be appreciated.