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: ['#F3E796', '#95C471', '#35729E', '#251735'],
29  
30 colorAxis: {
31 maxColor: '#05426E',
32 minColor: '#F3E796'
33 },
34  
35 plotOptions: {
36 map: {
37 nullColor: '#fcfefe'
38 }
39 },
40  
41 navigator: {
42 maskFill: 'rgba(170, 205, 170, 0.5)',
43 series: {
44 color: '#95C471',
45 lineColor: '#35729E'
46 }
47 }
48 };
49  
50 // Apply the theme
51 Highcharts.setOptions(Highcharts.theme);
52  
53 }(Highcharts));
54 }));