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
|
}
|