This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
IT2/html/tasks/chapter_8/highcharts/highchartsTheme.js

49 lines
1016 B
JavaScript

/* Found at https://github.com/jbkunst/highcharts-themes-collection */
Highcharts.theme = {
"colors": ["#F92672", "#66D9EF", "#A6E22E", "#A6E22E"],
"chart": {
"backgroundColor": "#272822",
"style": {
"fontFamily": "Arial",
"color": "#A2A39C"
}
},
"title": {
"style": {
"color": "#A2A39C"
},
"align": "left"
},
"subtitle": {
"style": {
"color": "#A2A39C"
},
"align": "left"
},
"legend": {
"align": "right",
"verticalAlign": "bottom",
"itemStyle": {
"fontWeight": "normal",
"color": "#A2A39C"
}
},
"xAxis": {
"gridLineDashStyle": "Dot",
"gridLineWidth": 1,
"gridLineColor": "#A2A39C",
"lineColor": "#A2A39C",
"minorGridLineColor": "#A2A39C",
"tickColor": "#A2A39C",
"tickWidth": 1
},
"yAxis": {
"gridLineDashStyle": "Dot",
"gridLineColor": "#A2A39C",
"lineColor": "#A2A39C",
"minorGridLineColor": "#A2A39C",
"tickColor": "#A2A39C",
"tickWidth": 1
}
};