Light Mode? #858
stellarpower
started this conversation in
General
Light Mode?
#858
Replies: 2 comments 2 replies
-
Thanks for posting. Can you post a sample image of what you mean? All of the plots have a black canvas color. For example, when you run |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi thanks for posting, how is it rendering on your screen? For now you can do something like this: for subplot in fig:
subplot.background_color = "w"
subplot.axes.colors = ("black", "black", "black")
for axis in ["x", "y", "z"]:
axis_obj = getattr(subplot.axes, axis)
axis_obj.text.material.color = "black"
axis_obj.points.material.color = "black" |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When I run the examples from the folder, they all appear in dark mode on my local machine, and I can't read that, so whilst I'm interested to try fastplotlib, it's unusable for me like that. Is there a way to enable light mode for plots? I can change the plot colours, but the interface is still in dark and that's my larger concern.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions