1
jhzh
2025-04-20 d157d0892f1ab5517dbe3a08328ccb9c4e446615
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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.vertGridProperties.color": "#49495F",
    "paneProperties.horzGridProperties.color": "#49495F",
    "scalesProperties.backgroundColor": "#2b2b37",
    "scalesProperties.textColor": "#fff",
    "scalesProperties.lineColor" : "#49495F",
    "scalesProperties.fontSize":9,
    "mainSeriesProperties.style": 8,
    "paneProperties.legendProperties.showSeriesOHLC": false
}
 
 
export default {
    light,
    dark
}