| 1234567891011121314151617181920212223242526272829 |
- let light = {
- "paneProperties.background": "#ffffff",
- "paneProperties.vertGridProperties.color": "#dcdee0",
- "paneProperties.horzGridProperties.color": "#dcdee0",
- "scalesProperties.backgroundColor": "#ffffff",
- "scalesProperties.lineColor": "#dcdee0",
- "scalesProperties.textColor": "#333",
- "scalesProperties.fontSize": 9,
- "mainSeriesProperties.style": 8,
- };
- let dark = {
- // "paneProperties.background": "#2b2b37",
- "paneProperties.background": "#292944",
- "paneProperties.vertGridProperties.color": "#49495F",
- "paneProperties.horzGridProperties.color": "#49495F",
- // "scalesProperties.backgroundColor": "#2b2b37",
- "scalesProperties.backgroundColor": "#292944",
- "scalesProperties.textColor": "#fff",
- "scalesProperties.lineColor": "#49495F",
- "scalesProperties.fontSize": 9,
- "mainSeriesProperties.style": 8,
- "paneProperties.legendProperties.showSeriesOHLC": false,
- };
- export default {
- light,
- dark,
- };
|