Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Dark Mode, also known as "Modo Escuro" in Portuguese, is a popular feature that changes the appearance of your operating system to a darker theme, which can be easier on the eyes and help reduce eye strain, especially in low-light environments. In this article, we'll walk you through the steps to enable Dark Mode on Windows 10 and Windows 11, both via the graphical interface and using the Command Line (CMD) and PowerShell.
Win + I
to open the Settings app.Personalization
.Colors
from the left-hand menu.Dark
.Win + I
to open the Settings app.Personalization
.Colors
from the left-hand menu.Dark
.While there isn't a direct CMD command to enable Dark Mode, you can achieve this by modifying the registry using the reg
command.
cmd
in the Start menu, right-click on Command Prompt
, and select Run as administrator
.reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v AppsUseLightTheme /t REG_DWORD /d 0 /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v SystemUsesLightTheme /t REG_DWORD /d 0 /f
PowerShell provides a more flexible scripting environment to enable Dark Mode by modifying the registry.
PowerShell
in the Start menu, right-click on Windows PowerShell
, and select Run as administrator
.Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "AppsUseLightTheme" -Type DWord -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "SystemUsesLightTheme" -Type DWord -Value 0
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v AppsUseLightTheme /t REG_DWORD /d 0 /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v SystemUsesLightTheme /t REG_DWORD /d 0 /f
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "AppsUseLightTheme" -Type DWord -Value 0
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "SystemUsesLightTheme" -Type DWord -Value 0