/
/

How to Turn On or Off Invert Colors while Magnifier is On in Windows 11

How to Turn On or Off Invert Colors while Magnifier is On in Windows 11 blog banner image

With accessibility in mind, Windows offers a slew of tools to make it easier for those with special needs. One of these tools is the Magnifier, which enlarges parts of the screen, helping users with visual impairments. Within the Magnifier tool, users also have an option to flip the colors of the part of the screen that’s magnified.

While a useful accessibility feature, understanding how to turn the magnifier’s invert color mode on or off is essential to fit the user’s viewing and accessibility preferences. In this guide, we’ll walk you through several methods to configure the color inversion settings for Magnifier in Windows 11.

Click to Choose a Method

💻Best for Individual Users

💻💻💻Best for Enterprises

Method 1: Settings app
Method 2: Magnifier shortcut
Method 3: Registry Editor
Method 4: PowerShell

Method 1: Enable or disable via Settings app (GUI)

📌Use Case:

This method is the most straightforward and can be used by casual Windows 11 users.

📌Prerequisites: 

  • Applies to all editions of Windows 11: These steps work across Windows 11 Home, Pro, and Enterprise editions.
  • Administrator privileges: No administrator privileges are required when using the Settings app.
  • Enabled Magnifier mode: Magnifier must be enabled and running for the color inversion setting to take effect.
  1. Open the Settings app by pressing Windows key + I or by clicking the Start button and selecting Settings.
  2. Navigate to Accessibility > Magnifier.Navigate to Accessibility then Magnifier
  3. Scroll down to the Appearance section.
  4. Locate the toggle labeled Invert colors.Go to Appearance section and Locate the toggle labeled Invert colors.
  5. Toggle Invert colors to:
    • On = Screen colors are inverted while the Magnifier is running
    • Off = Colors display normallyToggle Invert Colors On or Off

The change takes effect immediately when Magnifier is active.

Method 2: Toggle via Magnifier shortcut

📌Use Case:

This method is a quick way for casual Windows 11 users to configure the color inversion setting for Magnifier.

📌Prerequisites: 

  • Applies to all editions of Windows 11: These steps work across Windows 11 Home, Pro, and Enterprise editions.
  • Administrator privileges: No administrator privileges are required when using the keyboard shortcuts.
  • Enabled Magnifier mode: Magnifier must be enabled and running for the color inversion setting to take effect.

While Magnifier is active, press Ctrl + Alt + I.While Magnifier is active, press Ctrl + Alt + I

This shortcut instantly inverts or restores screen colors, depending on the current state.Inverted color after pressing Ctrll + Alt + I

Method 3: Enable or disable via Registry Editor

📌Use Cases:

This method is best for advanced users and system administrators who want more control over system behavior, including the ability to deploy default settings across user profiles.

📌Prerequisites: 

  • Applies to all editions of Windows 11: These steps work across Windows 11 Home, Pro, and Enterprise editions.
  • Administrator privileges: This method requires administrator rights.
  • Enabled Magnifier mode: Magnifier must be enabled and running for the color inversion setting to take effect.
    1. Open the Registry Editor by pressing the Windows key + R. Type regedit and press Enter.
    2. Navigate to the following path: HKEY_CURRENT_USER\Software\Microsoft\ScreenMagnifierOpen Registry EditorRegistry Editor Go to HKEY_CURRENT_USER, Software,Microsoft,ScreenMagnifier
    3. Look for a DWORD (32-bit) value named Invert. If it doesn’t exist, right-click the right pane, choose New > DWORD (32-bit) Value, and name it Invert.
    4. Look for a DWORD (32-bit) value named InvertSet the value data to:
      • 1 to enable Magnifier color inversionLook for a DWORD (32-bit) value named Invert and set the value to 1 to enable Magnifier Color inversion
      • 0 to disable Magnifier color inversionLook for a DWORD (32-bit) value named Invert and set the value to 0 to enable Magnifier Color inversion
    5. Click OK, then close the Registry Editor.

Method 4: PowerShell script for automation

📌Use Cases:

This method is useful for applying user-level accessibility defaults across multiple devices.

📌Prerequisites: 

  • Applies to all editions of Windows 11: These steps work across Windows 11 Home, Pro, and Enterprise editions.
  • Administrator privileges: This method requires administrator rights.
  • Enabled Magnifier mode: Magnifier must be enabled and running for the color inversion setting to take effect.
  1. Open PowerShell by pressing the Windows key + R. Type powershell and press Enter.
  2. To enable invert colors for Magnifier, run the following command:
    Set-ItemProperty -Path “HKCU:\Software\Microsoft\ScreenMagnifier” -Name “Invert” -Value 1Open Powershell and paste the command
    Inverted color after entering the command
  3. To disable invert colors for Magnifier, run the following command:
    Set-ItemProperty -Path “HKCU:\Software\Microsoft\ScreenMagnifier” -Name “Invert” -Value 0Open powershell and paste the command to disable invert colors
    Disabled the invert colors

⚠️ Things to look out for

Risks

Potential Consequences

Reversals

Registry misconfiguration Color inversion may not work or may cause the Magnifier to malfunction. Open Registry Editor. Navigate to HKCU\Software\Microsoft\ScreenMagnifier. Check or recreate the Invert DWORD. Set to 1 (on) or 0 (off). Or delete the value to reset.
Incorrect PowerShell command May apply unwanted settings or changes under the wrong user context. Rerun the correct PowerShell command:

  • Set-ItemProperty -Path “HKCU:\Software\Microsoft\ScreenMagnifier” -Name “Invert” -Value 0

To remove the setting, use:

  • Remove-ItemProperty -Path “HKCU:\Software\Microsoft\ScreenMagnifier” -Name “Invert”
Pushing the wrong settings during deployment Incorrect registry changes may be applied to all users or wrong registry hives (e.g., HKLM instead of HKCU). Review the deployment script. Make sure it targets HKCU for per-user config. Push the updated script or policy to correct the change.

Why manage color inversion in Magnifier?

  • Visual enhancements: Color inversion in the Magnifier can help enhance contrast and visibility for users with low vision.
  • To help reduce visual fatigue: In bright or high-glare environments, inverting the colors can aid in reducing brightness and visual fatigue.
  • Accessibility: Organizations may want consistent settings across multiple devices, especially in environments where accessibility configurations are pre-defined.S
  • Branding consistency: Disabling color inversion can eliminate conflicts with high-contrast themes or branding colors.

Additional considerations when managing Magnifier’s invert colors feature

Aside from the methods outlined here for configuring the color inversion setting in Magnifier, there are some factors you may need to consider:

  • Per-user setting: The setting is stored under the current user’s registry hive (HKCU), so it must be configured separately for each user account.
  • High-contrast themes: Enabling color inversion in Magnifier may result in visual conflicts with existing accessibility themes.
  • Magnifier must be running: Color inversion will only take effect when Magnifier is active while doing the configuration.
  • Deployment: System administrators can combine these configurations with system-wide login scripts or Intune policies to enforce settings across environments.

Managing color inversion for Magnifier in Windows 11

Having the capability to invert colors in Magnifier benefits users who have visual impairment. However, there are some who prefer this feature turned off. So, Windows offers these users different methods to configure color inversion when using Magnifier.

You can use the Settings app for straightforward management, press the Ctrl + Alt + I keyboard shortcut for a quick toggle, or modify the Registry or use PowerShell scripts for bulk management. Whether you’re a casual Windows user or a system administrator with advanced knowledge, there’s a configuration method that suits your needs. These methods should help personalize the Magnifier experience or enforce accessibility standards across multiple devices.

Related topics:

You might also like

Ready to simplify the hardest parts of IT?
×

See NinjaOne in action!

By submitting this form, I accept NinjaOne's privacy policy.

NinjaOne Terms & Conditions

By clicking the “I Accept” button below, you indicate your acceptance of the following legal terms as well as our Terms of Use:

  • Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms.
  • Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party.
  • Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library belonging to or under the control of any other software provider.
  • Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations.
  • Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks.
  • Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script.
  • EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA).