This repository was archived by the owner on Apr 28, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,7 @@ def build_image_chart(collection, view):
194
194
'data' : list (map (lambda x : x [index ], datas [1 :]))
195
195
})
196
196
197
- bkg = '%232f3437 ' if dark_mode else 'white'
197
+ bkg = '%23191919 ' if dark_mode else 'white'
198
198
data = {
199
199
'type' : chart_type .lower ().replace ('chart' , '' ),
200
200
'data' : {
Original file line number Diff line number Diff line change 38
38
39
39
{ % if dark_mode % }
40
40
options [ 'titleTextStyle' ] = { color : 'white' } ;
41
- options [ 'backgroundColor' ] = 'rgb(47, 52, 55) ' ;
41
+ options [ 'backgroundColor' ] = '#191919 ' ;
42
42
options [ 'legend' ] = { textStyle : { color : 'white' } } ;
43
- options [ 'pieSliceBorderColor' ] = 'rgb(47, 52, 55) ' ;
43
+ options [ 'pieSliceBorderColor' ] = '#191919 ' ;
44
44
{ % endif % }
45
45
46
46
// Instantiate and draw our chart, passing in some options.
Original file line number Diff line number Diff line change 41
41
42
42
{ % if dark_mode % }
43
43
options . titleTextStyle = { color : 'white' } ;
44
- options . backgroundColor = 'rgb(47, 52, 55) ' ;
44
+ options . backgroundColor = '#191919 ' ;
45
45
options . legend = { textStyle : { color : 'white' } } ;
46
46
options . hAxis = { textStyle : { color : 'white' } } ;
47
47
options . vAxis = { textStyle : { color : 'white' } } ;
48
- options . pieSliceBorderColor = 'rgb(47, 52, 55) ' ;
48
+ options . pieSliceBorderColor = '#191919 ' ;
49
49
{ % endif % }
50
50
51
51
// Instantiate and draw our chart, passing in some options.
You can’t perform that action at this time.
0 commit comments