mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-03 06:47:55 +00:00
12 lines
316 B
SCSS
12 lines
316 B
SCSS
/* Sets the default colors for the visualization colors. When rendering a series of data, the color
|
|
order for each item should always be the same */
|
|
@for $i from 1 through 18 {
|
|
$color: get-dataviz-color($i);
|
|
.viz-chart {
|
|
.highcharts-color-#{$i - 1} {
|
|
fill: $color;
|
|
stroke: $color;
|
|
}
|
|
}
|
|
}
|