sunset.src.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /**
  2. * @license Highcharts JS v6.1.0 (2018-04-13)
  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. Highcharts.theme = {
  27. colors: ['#FDD089', '#FF7F79', '#A0446E', '#251535'],
  28. colorAxis: {
  29. maxColor: '#60042E',
  30. minColor: '#FDD089'
  31. },
  32. plotOptions: {
  33. map: {
  34. nullColor: '#fefefc'
  35. }
  36. },
  37. navigator: {
  38. series: {
  39. color: '#FF7F79',
  40. lineColor: '#A0446E'
  41. }
  42. }
  43. };
  44. // Apply the theme
  45. Highcharts.setOptions(Highcharts.theme);
  46. }(Highcharts));
  47. }));