We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aeee23 commit b44efcfCopy full SHA for b44efcf
src/widget.tsx
@@ -82,7 +82,11 @@ export class CounterWidget extends ReactWidget {
82
visualizer() {
83
this.updateDatasource();
84
85
- this.stage = new NGL.Stage(this.uuid, { backgroundColor: 'white' });
+ if (this.theme === 'light') {
86
+ this.stage = new NGL.Stage(this.uuid, { backgroundColor: 'white' });
87
+ } else {
88
+ this.stage = new NGL.Stage(this.uuid, { backgroundColor: 'black' });
89
+ }
90
91
window.addEventListener(
92
'resize',
0 commit comments