tvStyle.js 942 B

1234567891011121314151617181920212223242526272829
  1. let light = {
  2. "paneProperties.background": "#ffffff",
  3. "paneProperties.vertGridProperties.color": "#dcdee0",
  4. "paneProperties.horzGridProperties.color": "#dcdee0",
  5. "scalesProperties.backgroundColor": "#ffffff",
  6. "scalesProperties.lineColor": "#dcdee0",
  7. "scalesProperties.textColor": "#333",
  8. "scalesProperties.fontSize": 9,
  9. "mainSeriesProperties.style": 8,
  10. };
  11. let dark = {
  12. // "paneProperties.background": "#2b2b37",
  13. "paneProperties.background": "#292944",
  14. "paneProperties.vertGridProperties.color": "#49495F",
  15. "paneProperties.horzGridProperties.color": "#49495F",
  16. // "scalesProperties.backgroundColor": "#2b2b37",
  17. "scalesProperties.backgroundColor": "#292944",
  18. "scalesProperties.textColor": "#fff",
  19. "scalesProperties.lineColor": "#49495F",
  20. "scalesProperties.fontSize": 9,
  21. "mainSeriesProperties.style": 8,
  22. "paneProperties.legendProperties.showSeriesOHLC": false,
  23. };
  24. export default {
  25. light,
  26. dark,
  27. };