Warning ...
Quote:
Originally Posted by pth6
For hub color:
Code:
HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisp layName\0409]
"0"="Green" ;
"1"="Red" ;
"2"="Blue" ;
"3"="Orange" ;
"5"="Pink" ;
"6"="Brown" ;
"7"="Lime" ;
"8"="Teal" ;
"9"="Purple" ;
"10"="Magenta" ;
|
There seems to be three kind-of special AccentDisplayNames:
4: Not present (but hex value is present, mostly black)
11: light blue.
12: dark blue.
The 11 and 12 AccentdisplayNames are kind of special, using the very same localized string across all supported device languages, i.e.:
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisp layName\0409]
"0"="Green"
"1"="Red"
"2"="Blue"
"3"="Orange"
"5"="Pink"
"6"="Brown"
"7"="Lime"
"8"="Teal"
"9"="Purple"
"10"="Magenta"
"11"="azul claro" <- Spanish
"12"="azul oscuro" <- Spanish
If you change those values, the "theme-ing" gets broken for that language until you fix it back. However, you can add other colors from 13 and up, such as:
Code:
; =================================================
; Adding custom colors
; =================================================
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisplayName\0409]
"13"="Grey"
"14"="Light grey"
"15"="Black"
"16"="White"
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisplayName\0c0a]
"13"="Gris"
"14"="Gris claro"
"15"="Negro"
"16"="Blanco"
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\0\Accents]
"13"=dword:FF808080
"14"=dword:FFC0C0C0
"15"=dword:FF000000
"16"=dword:FFFFFFFF
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\1\Accents]
"13"=dword:FF808080
"14"=dword:FFC0C0C0
"15"=dword:FF000000
"16"=dword:FFFFFFFF
Regards.
|