I'm trying to get the DWM colorizationColor using:
Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\DWM").GetValue("ColorizationColor")
however it is returning -2144154163 (the real value is 2150813133)
I thinks this is because the value cannot be hold on a 32-bit int... however event casting (or Converting) to int64 fails.
PD: It may sound like an easy question to answer but I cannot find a solution :(