You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
874 B
28 lines
874 B
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
|
|
}
|