Change the color of the login screen in Windows 8.1 Pro?


Recommended Posts

On the Start Screen, go to the Charms Bar and select Settings, then click Personalise. :)

Already tried that and there is not login screen color choose option on there. You probably confuse with the lock screen picture, I know that you can choose a picture for the lock screen. I am looking for the color in the login screen.

The background color will be your login screen color if you don't use an image.  On my work PC with two screens, monitor 1 has an image, and monitor has my background color.

Could it be that it uses the default color until someone logs in?  So if macoman has a green theme and I have a red theme it will show the default blue until either one of us logs in, which is when the background color gets applied.  With this logic the login screen would always be the default blue.

  • Like 2

Could it be that it uses the default color until someone logs in?  So if macoman has a green theme and I have a red theme it will show the default blue until either one of us logs in, which is when the background color gets applied.  With this logic the login screen would always be the default blue.

I remember when I was installing Windows 8.1, there was an option to select the default color... it is a way to change that default color?

You can force a specific color combination using Group Policy.

 

Run gpedit.msc as admin. Go to Computer Configuration > Administrative Templates > Control Panel > Personalization. Enable "Force a specific background and accent color" and type in the colors in hex (you can test #FFFF00 and #00FF00 if you want it to be very obvious that it's working). Log out, and you should see it.

 

Edit: There are color combinations that are disallowed (see the description in gpedit). This change applies to all users and when a user is not logged in. If you want some place to look up hex codes for colors, this site is reasonable.

 

http://www.color-hex.com/color-palettes/

OK, I just changed my background color to red (I actually have blue as my normal background color) and when I lock the computer (Win+L) my login screen is red.  Since I'm already logged in it uses my colors, but only after I'm logged in,

OK, I just changed my background color to red (I actually have blue as my normal background color) and when I lock the computer (Win+L) my login screen is red.  Since I'm already logged in it uses my colors, but only after I'm logged in,

That's not what I am looking for... I looking for to change the default color of Windows 8.1 login screen. Like I said before, there was a default color that you need to choose before finishing installing and setting the OS. I do not understand why Microsoft make it so difficult to switch to another default color when you are not logon. 

I think the option you're thinking of just sets your color as the first user, not a system-wide default color.

 

It's not like it's new behavior:

Windows 7 had a default login screen:
windows-7-login-screen-default-450.jpg

 

As did Windows XP:

xp_welcome_screen.jpg

 

You can change it via registry hacks, but that's how you had to do it in the past also.

It sounds like you're trying to set the colors on the 8.1 login screen and not the personal lock screen. If I'm right...
 

First you need to get the colors you want to have set on the login screen. The easy way is to set the colors for the logged in user via Personalize then retrieve the hex value for each color from the registry:

:: get colors for windows 8.1 current user
for /f "tokens=1,2 delims==" %s in ('wmic path win32_useraccount where name^='%username%' get sid /value ^| find /i "SID"') do set SID=%t
:: pause for WMIC oddity
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v AccentColor
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v StartColor

Once you have the values, set the colors for the system in the registry. This changes the colors on the actual login screen.

:: set login colors for windows 8.1
:: the hex values are ABGR (alpha, blue, green, red)
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v AccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v StartColor /t REG_DWORD /d 0xff23221e /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultAccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultStartColor /t REG_DWORD /d 0xff23221e /f

Hope that helps.

...and since that topic is usually followed by "...can I change the wallpaper too?"  The answer is also yes!

 

The first step is to grant Administrators rights to the necessary folders:

:: grant Administrators ownership and full control of the parent folder of SYSTEM's background folder
takeown /a /f C:\ProgramData\Microsoft\Windows\SystemData
icacls C:\ProgramData\Microsoft\Windows\SystemData /grant *S-1-5-32-544:F

:: grant Administrators ownership and full control of the SYSTEM's background folder
takeown /a /f C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18 /r /d y 
icacls C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18 /grant *S-1-5-32-544:F /T /C

:: grant Administrators ownership and full control of the default backgrounds directory
takeown /a /f C:\Windows\Web\Screen /r /d y
icacls C:\Windows\Web\Screen /grant *S-1-5-32-544:F /T /C

The next step removes the actual lock screen images...which are actually copies!

:: remove all copies of the SYSTEM's background
del /q C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18\ReadOnly\LockScreen_Z\*
Next, remove any copies we previously made of the default background and then rename the file
:: remove any copies made of the default lock screen and make a new copy.
del /q C:\Windows\Web\Screen\img100a.jpg
ren C:\Windows\Web\Screen\img100.jpg img100a.jpg

Copy a new lock screen into the default lock screen directory with the same name as the original

:: replace default lock screen
copy /y LockScreen.jpg C:\Windows\Web\Screen\img100.jpg

Reset the important permissions

:: reset ownership of all restricted files and folders
icacls C:\Windows\Web\Screen /setowner "NT Service\TrustedInstaller" /T /C
icacls C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18 /setowner *S-1-5-18 /T /C

Lock out and view your handiwork.

 

If the lock screen image is missing and just have the single color background, your lock screen image is likely too big. Shrink it down and try again.

 

 

It sounds like you're trying to set the colors on the 8.1 login screen and not the personal lock screen. If I'm right...
 

First you need to get the colors you want to have set on the login screen. The easy way is to set the colors for the logged in user via Personalize then retrieve the hex value for each color from the registry:

:: get colors for windows 8.1 current user
for /f "tokens=1,2 delims==" %s in ('wmic path win32_useraccount where name^='%username%' get sid /value ^| find /i "SID"') do set SID=%t
:: pause for WMIC oddity
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v AccentColor
reg query HKLM\Software\Microsoft\Windows\CurrentVersion\SystemProtectedUserData\%SID%\AnyoneRead\Colors /v StartColor

Once you have the values, set the colors for the system in the registry. This changes the colors on the actual login screen.

:: set login colors for windows 8.1
:: the hex values are ABGR (alpha, blue, green, red)
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v AccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v StartColor /t REG_DWORD /d 0xff23221e /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultAccentColor /t REG_DWORD /d 0xff606263 /f
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\Accent /v DefaultStartColor /t REG_DWORD /d 0xff23221e /f

Hope that helps.

 

Or use this app: http://winaero.com/comment.php?comment.news.216

  • Like 2
  • 11 months later...

hey macoman i tell u just try this this will 100% work 

just go on start or press win button then take cursor in corner then click on setting and click personalize then u will see on upper background and background colour and accent colour u should choose background colour to change sign in back ground and enjoy 

 

  • 7 months later...
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • WildBit Viewer 6.20 released; no further updates planned by Razvan Serea WildBit Viewer is a popular, fast, and extensive image viewer offering a comprehensive suite of tools for photographers, designers, and image enthusiasts. It includes a powerful Viewer, Slide Show, Editor, Search, Profile Switcher, and Multi-Screen Viewer. The Viewer provides blazing-fast folder, file list, and thumbnail navigation with customizable headers, full-screen view, and a shell toolbar to organize favorite folders. It supports all major graphic formats (over 70), including JPEG, TIFF, PNG, BMP, GIF, PCX, TGA, and RAW formats. Detailed Image Info shows EXIF, IPTC, and XMP metadata, with rotation based on EXIF orientation, wallpaper setting, image comparison, geo-tag viewing, color labels, and CMS-aware color management. The Slide Show module offers 176 transition effects, multi-monitor support, custom shows with per-image settings, image marking, zoom, rotate, and desktop hiding for a professional viewing experience. The Editor supports advanced image manipulation, including crop, resize, color adjustments, curves, edge detection, effects, batch processing, retouching, layer support, and printing. Users can apply mass renaming, update or clear metadata, and work with multi-page TIFFs and animated GIFs. Search allows filtering by name, location, date, size, attributes, and metadata, while the Profile Switcher saves and loads custom layouts for all modules. The Multi-Screen Viewer opens multiple windows on available monitors, allowing simultaneous image viewing with independent zoom, pan, and rotation. WildBit Viewer also supports portable operation, 32- and 64-bit versions, Unicode, high-DPI displays, and multiple Windows styling options. With its combination of speed, versatility, and rich feature set, WildBit Viewer is an indispensable tool for managing, editing, and showcasing images efficiently. WildBit Viewer key features: Blazing-fast folder, file list, and thumbnail browsing Supports 70+ image formats including JPEG, TIFF, PNG, BMP, GIF, and RAW Full-screen view with multi-monitor support Explorer-style file handling with customizable headers Thumbnail Browser with sorting, view change, and fast size adjustment EXIF, IPTC, and XMP metadata viewing and editing Automatic rotation based on EXIF orientation Shell toolbar for organizing favorite folders Image Compare to calculate similarity between images Mass renaming and batch metadata updates File List Generator (HTML, CSV, RTF, TXT, Unicode) Rating and color labels, CMS-aware color management Video playback (AVI, MPG, MPEG, WMV) Animated GIF, multipage TIFF, Camera RAW support Slide Show with 176 transition effects and custom settings Editor: crop, resize, rotate, flip, canvas resize, and retouching tools Batch processing and image format conversion Multi-Screen Viewer: multiple windows with independent zoom, pan, and rotate Profile Switcher: save, load, reset, delete module profiles Portable operation, 32-/64-bit support, Unicode, and high-DPI ready WildBit Viewer 6.20 changelog: Viewer, Slide Show, Editor, Search, Profile Switcher & Multi Screen Viewer. Updated ImageEn to 15.0.0 version. Viewer, Slide Show, Editor, Search, Profile Switcher & Multi Screen Viewer. Updated Jedi JCL&JVCL. Viewer - Image Geo Info, OpenStreetMap removed. Slide Show Remote Mode removed. Note! This means that WildBit Slide Show Remote is now officially EOL. Editor - Shortcut keys for Capture removed. Optimized code. Note! This version includes help what supersedes all previous releases. plus Lots of bug fixes and changes, check Readme files for details. WildBit Viewer End‑of‑Life WildBit Viewer has reached its final release with version 6.20. As development comes to a close, no further feature updates are planned. WildBit Slide Show Remote reached End-of-Life on 06 June 2026, while WildBit Viewer will reach End-of-Life on 30 June 2026. Downloads will remain available until the end of July 2026 (possibly extending into early August). After End-of-Life, the software will no longer receive updates, security fixes, or technical support. Download: WildBit Viewer 64-bit | Portable 64-bit | ~70.0 MB (Freeware) Download: WildBit Viewer 32-bit | Portable 32-bit Links: WildBit Viewer Homepage | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Thanks for liking it! 😊 That's Arch Linux with Gnome.
    • LOL. Can't even quote and edit a comment correctly. Figures you're a Linux user.
    • It won't perform hugely better than the 3080 unless you're VRAM limited in games. Have you tried putting new thermal pads on them 3080 and giving it a good clean to see if you can regain your temps and overclock?
  • Recent Achievements

    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
    • Rising Star
      olavinto went up a rank
      Rising Star
    • One Month Later
      lamborghiniv10 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      252
    3. 3
      Steven P.
      71
    4. 4
      FloatingFatMan
      69
    5. 5
      +Edouard
      69
  • Tell a friend

    Love Neowin? Tell a friend!