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

    • Does anyone here know if these updates are integrated into the UUP dump isos?
    • Motrix Next 3.9.4 by Razvan Serea Motrix Next is a modern, open-source cross-platform download manager built as the official next-generation successor to the original Motrix project. It has been completely rewritten using Tauri 2, Vue 3, TypeScript, and Rust, while still relying on the powerful Aria2 download engine for high-speed multi-protocol transfers. The app supports HTTP, HTTPS, FTP, BitTorrent, ED2K and magnet links, offering advanced features like multi-connection acceleration, task scheduling, bandwidth control, and batch download management. With a significantly reduced install size (around 20MB), it focuses on being lightweight, fast, and resource-efficient compared to traditional Electron-based download tools. Designed for Windows, macOS, and Linux, Motrix Next delivers a clean, modern UI inspired by Material Design 3 principles, with smooth animations and a minimal workflow. It improves usability through better download organization, system tray integration, and enhanced torrent handling including selective file downloads and tracker management. Motrix Next features: Multi-protocol downloads — HTTP, FTP, BitTorrent, Magnet, .torrent, ED2K, and Metalink tasks BitTorrent — Selective file download, DHT, peer exchange, encryption controls, metadata caching, GeoIP peer flags, and tracker probing Browser extension integration — Embedded Extension API with independent authentication, download confirmation, smart auto-submit, filename hints, referer/cookie forwarding, and real-time controls (Chrome Web Store · Edge Add-ons) Safe filename handling — Content-Disposition, RFC 2047, non-UTF-8, percent-encoded, and extensionless URL resolution with path traversal sanitization Download organization — Favorite and recent folders, optional file-type categorization, stale-record cleanup, and completed history backed by SQLite Concurrent downloads — Independent controls for active tasks, HTTP connections per server, segments per file, and BT peer limits Speed control — Global and per-task upload/download limits with day-of-week and time-of-day scheduling System integration — Tray operation, optional tray speed display, macOS Dock badge/progress, protocol handlers for magnet://, thunder://, and motrixnext:// Lightweight mode — Destroys the WebView on minimize-to-tray while Rust keeps the engine, task monitor, notifications, history, and extension routing alive Notifications and power options — Native task start/complete/failure notifications, keep-awake during downloads, and optional shutdown after completion Network controls — Scoped proxy support for downloads, app updates, and tracker updates, plus system proxy detection Auto-update channels — Stable, Beta, and Latest Across Channels policies with separate download and install phases Diagnostics — Structured logs, exportable diagnostic ZIPs, database integrity checks, automatic DB rebuild, and Linux GPU rendering fallback Personalization — Light/dark/system theme, 10 color schemes, 26 languages, and first-launch system language detection Motrix Next 3.9.4 changelog: Motrix Next 3.9.4 promotes the 3.9.4 beta cycle to stable. This release refreshes bundled engine binaries, improves task detail readability and copy actions, expands link handling for magnet and ED2K workflows, polishes responsive navigation and text wrapping, updates browser extension documentation, and refines network preference controls. New Features Task Detail copy actions — Added copyable values for task metadata and reusable render functions for long text fields. Magnet and ED2K lifecycle support — Added task lifecycle handling for magnet and ED2K links. History cleanup for deleted tasks — Deleted tasks can now remove matching history records. User-Agent management — Added user-agent management and improved related network preference controls. Browser extension documentation — Added the Firefox Add-ons link for the Motrix Next extension. Improvements Engine binaries — Updated bundled binaries for supported architectures. Task Detail readability — Long task names, URLs, tracker values, and copyable metadata now render more clearly. Deletion messaging — Refined localized task deletion text for clarity and consistency. Text wrapping — Improved URI input wrapping and task name multiline display. Navigation layout — Improved sub-navigation responsiveness. Disk allocation default — Changed the default file allocation method to trunc. Proxy controls — Improved proxy button styling in network preferences. Download: Motrix Next 64-bit | ARM64 | macOS ~20.0 MB (Open Source) Links: Website | macOS / Linux | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • NVIDIA officially supports Ubuntu, as linked above with the GeForce NOW Hands on I did in collaboration with Paul Hill.
    • TO be clear I am not running linux today, however I keep thinking about it. And I want to make sure there are minimal obstacles if I decide to make that switch in the coming months.
    • Yes, I actually glossed over the Linux part from the OP. You could always go for a 9070 XT and if you really want to play Ray Traced games in the future, GeForce Now is pretty damn good on Linux https://www.neowin.net/news/nvidias-native-geforce-now-app-for-linux-bridges-the-gaming-gap-hands-on/
  • Recent Achievements

    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      252
    3. 3
      Steven P.
      72
    4. 4
      +Edouard
      69
    5. 5
      Skyfrog
      67
  • Tell a friend

    Love Neowin? Tell a friend!