corrade-nucleus-nucleons – Blame information for rev 31

Subversion Repositories:
Rev:
Rev Author Line No. Line
31 office 1 /**
2 * @license Highcharts JS v5.0.14 (2017-07-28)
3 *
4 * (c) 2009-2017 Highsoft AS
5 *
6 * License: www.highcharts.com/license
7 */
8 'use strict';
9 (function(factory) {
10 if (typeof module === 'object' && module.exports) {
11 module.exports = factory;
12 } else {
13 factory(Highcharts);
14 }
15 }(function(Highcharts) {
16 (function(Highcharts) {
17 /**
18 * (c) 2010-2017 Highsoft AS
19 *
20 * License: www.highcharts.com/license
21 *
22 * Accessible high-contrast theme for Highcharts. Considers colorblindness and
23 * monochrome rendering.
24 * @author Øystein Moseng
25 */
26  
27 Highcharts.theme = {
28 colors: ['#FDD089', '#FF7F79', '#A0446E', '#251535'],
29  
30 colorAxis: {
31 maxColor: '#60042E',
32 minColor: '#FDD089'
33 },
34  
35 plotOptions: {
36 map: {
37 nullColor: '#fefefc'
38 }
39 },
40  
41 navigator: {
42 series: {
43 color: '#FF7F79',
44 lineColor: '#A0446E'
45 }
46 }
47 };
48  
49 // Apply the theme
50 Highcharts.setOptions(Highcharts.theme);
51  
52 }(Highcharts));
53 }));