When loading an stl the binary format appears in red color.
But if I load a stl in ascci format it appears in the correct color.
Example of how I load the stl:
const reader = vtkSTLReader.newInstance();
await reader.setUrl(this.stl, { binary: true });
const vertebraMapper = vtkMapper.newInstance();
vertebraMapper.setInputData(reader.getOutputData());
const vertebraActor = vtkActor.newInstance();
vertebraActor.setMapper(vertebraMapper);
vertebraActor.getProperty().setOpacity(0.6);
vertebraActor.getProperty().setColor([0.88, 0.84, 0.73]); // rgb(225, 214, 186)