sunset.src.js 1.2 KB

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