| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /* *
- *
- * (c) 2010-2021 Highsoft AS
- *
- * Author: Øystein Moseng
- *
- * License: www.highcharts.com/license
- *
- * Accessible high-contrast theme for Highcharts. Specifically tailored
- * towards 3:1 contrast against white/off-white backgrounds. Neighboring
- * colors are tested for color blindness.
- *
- * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
- *
- * */
- 'use strict';
- import Highcharts from '../../Core/Globals.js';
- import U from '../../Core/Utilities.js';
- var setOptions = U.setOptions;
- Highcharts.theme = {
- colors: [
- '#5f98cf',
- '#434348',
- '#49a65e',
- '#f45b5b',
- '#708090',
- '#b68c51',
- '#397550',
- '#c0493d',
- '#4f4a7a',
- '#b381b3'
- ],
- navigator: {
- series: {
- color: '#5f98cf',
- lineColor: '#5f98cf'
- }
- }
- };
- // Apply the theme
- setOptions(Highcharts.theme);
|