avocado.src.js 1.1 KB

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