WickedSick
New Member
- Local time
- 10:25 PM
- Posts
- 7
Thread starter
Hello.
Recently I've been using a task in task scheduler, which automatically changes my "theme" from dark to light/light to dark.
i wanted to have color accent changed too, alongside of this.
i created one with creativity (I codded it at the bottom of the post) but only works for title bars, and taskbar doesn't seem to change.
Any ideas? i'd be really glad if you help me guys.
I've added codes below:
Auto-dark mode code which works:
Auto-dark mode code PLUS changing accent to a specified color(only works for Title bars)
Recently I've been using a task in task scheduler, which automatically changes my "theme" from dark to light/light to dark.
i wanted to have color accent changed too, alongside of this.
i created one with creativity (I codded it at the bottom of the post) but only works for title bars, and taskbar doesn't seem to change.
Any ideas? i'd be really glad if you help me guys.
I've added codes below:
Auto-dark mode code which works:
Code:
New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -Value 0 -Type Dword -Force; New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0 -Type Dword -Force;
Code:
New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name SystemUsesLightTheme -Value 0 -Type Dword -Force; New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize -Name AppsUseLightTheme -Value 0 -Type Dword -Force; New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent -Name AccentColorMenu -Value 4282927692 -Type Dword -Force; New-ItemProperty -Path HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent -Name StartColorMenu -Value 4282927692 -Type Dword -Force; New-ItemProperty -Path HKCU:SOFTWARE\Microsoft\Windows\DWM -Name AccentColor -Value 4282927692 -Type Dword -Force
- Windows Version
- Windows 10
My Computer
System One
-
- Operating System
- Windows 10