How do I programmatically switch to Dark Mode (Dark Theme) in R2025a?

164 vues (au cours des 30 derniers jours)
Mike Croucher
Mike Croucher le 13 Jan 2025
Modifié(e) : Adam Danz le 14 Jan 2025
I am running R2025a pre-release. What are the commands to switch to dark mode?

Réponse acceptée

Mike Croucher
Mike Croucher le 13 Jan 2025
Modifié(e) : Mike Croucher le 13 Jan 2025
This is supported from R2025a onwards. This is what you need to do
>> s = settings;
>> s.matlab.appearance.MATLABTheme.PersonalValue = "Dark";
  1 commentaire
Adam Danz
Adam Danz le 13 Jan 2025
Modifié(e) : Adam Danz le 14 Jan 2025
And for figures,
theme('dark') % light | auto
% Or
theme(fig,'dark')
% Or
fig = figure(Theme='dark')
% or
fig.Theme = 'dark';

Connectez-vous pour commenter.

Plus de réponses (1)

Michelle Hirsch
Michelle Hirsch le 13 Jan 2025
A few more notes:
  • The default behavior is to match your system theme. So, if your system theme is Dark, MATLAB is dark.
  • There's a setting (aka "preference") for it, too. An easy way to get there is to =just search for something like "dark" in the new search bar:

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by