Changing ControlUp's Color Scheme
    • Dark
      Light
    • PDF

    Changing ControlUp's Color Scheme

    • Dark
      Light
    • PDF

    Article Summary

    From ControlUp version 7.2 onwards, you can change the color scheme of the Real-Time Console grid.

    To change the color schema from the console, go to Settings > Display > Color Scheme. In the Color Thema dropdown, choose between Dark and Light.
    360000603937mceclip2.png

    In ControlUp v7.1 you still need to follow procedures below to change the color scheme.

    Regular Color Scheme 360000723349new.jpg
    New Color Scheme 360000717545old.jpg

    In order to change the color scheme for v7.1.1.150 build,

    Change the Color Scheme via Registry

    1. Registry Editor > HKLM\Software\Smart-X\ControlUp\Console
    2. Create the following key:
      • Value name - LightColorScheme
      • Value Type - REG_DWORD
      • Binary value:
        • 0 - Regular color
        • 1 - New color
    Note

    After adding the registry key, restart the console to effect the change.

    Note

    To change it in v7.1.1.158 and v7.1.1.162, use the same key but in HKCU instead of HKLM.

    Change the Color Scheme via PowerShell

    For v7.1.1.150 build:

    $ColorSchemePath = "HKLM:\Software\Smart-X\ControlUp\Console"
    New-Item -Path $ColorSchemePath -Force | New-ItemProperty -Name LightColorScheme -Value 0
    

    For v7.1.1.158 build:

    $ColorSchemePath = "HKCU:\Software\Smart-X\ControlUp\Console"
    New-Item -Path $ColorSchemePath -Force | New-ItemProperty -Name LightColorScheme -Value 0
    

    Was this article helpful?