Skip to content

Commit c922af7

Browse files
committed
Change implicit view material colors to white
1 parent 662cfcf commit c922af7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/src/_base/Three.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ var ThreeView = widgets.DOMWidgetView.extend({
118118
var material;
119119
if (this.model.get('_flat')) {
120120
material = new THREE.MeshPhongMaterial({
121-
color: '#888888',
121+
color: '#ffffff',
122122
shading: THREE.FlatShading,
123123
});
124124
} else if (this.model.get('_wire') || obj instanceof THREE.WireframeGeometry) {
@@ -129,7 +129,7 @@ var ThreeView = widgets.DOMWidgetView.extend({
129129
});
130130
} else {
131131
material = new THREE.MeshStandardMaterial({
132-
color: '#888888',
132+
color: '#ffffff',
133133
});
134134
}
135135

0 commit comments

Comments
 (0)