sunset.js 791 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* *
  2. *
  3. * (c) 2010-2019 Highsoft AS
  4. *
  5. * Author: Øystein Moseng
  6. *
  7. * License: www.highcharts.com/license
  8. *
  9. * Accessible high-contrast theme for Highcharts. Considers colorblindness and
  10. * monochrome rendering.
  11. *
  12. * !!!!!!! SOURCE GETS TRANSPILED BY TYPESCRIPT. EDIT TS FILE ONLY. !!!!!!!
  13. *
  14. * */
  15. 'use strict';
  16. import Highcharts from '../parts/Globals.js';
  17. Highcharts.theme = {
  18. colors: ['#FDD089', '#FF7F79', '#A0446E', '#251535'],
  19. colorAxis: {
  20. maxColor: '#60042E',
  21. minColor: '#FDD089'
  22. },
  23. plotOptions: {
  24. map: {
  25. nullColor: '#fefefc'
  26. }
  27. },
  28. navigator: {
  29. series: {
  30. color: '#FF7F79',
  31. lineColor: '#A0446E'
  32. }
  33. }
  34. };
  35. // Apply the theme
  36. Highcharts.setOptions(Highcharts.theme);