How to disable dark theme in matlab online
Show older comments
I cannot find a button to disable the dark theme on the online editor. It saves images with dark themes and backgrounds which requires a lot more effort than I want to put in to change all the colors involved. What commands/tabs do I have to check for a theme option?
2 Comments
korawit
on 4 Mar 2026
In my case I have changed Web browser theme from Dark to Light theme
Stephen23
on 4 Mar 2026
" It saves images with dark themes and backgrounds which requires a lot more effort than I want to put in to change all the colors involved."
You do not need to change the IDE theme just to save images:
mls = settings;
mls.matlab.appearance.figure.GraphicsTheme.TemporaryValue = "light";
% save your images
clearTemporaryValue(mls.matlab.appearance.figure.GraphicsTheme)
Accepted Answer
More Answers (0)
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!