I know how to change the color of a Dygraph Series using the Dygraph options:
Example:
new Dygraph(el, data, {
color: 'blue'
});
But I don't know how (or if it's possible) to define the color of a series via CSS:
Psuedo Example:
#dygraph-series-1 {
color: blue;
}