Is there a way in .Net Core 2.X to read the Selected Windows 10 Accent Color in a Console Application.
Most of the solution i found are UWP or WPF apps.
Too
HKEY_CURRENT_USER\Software\Microsoft\Windows\DWM\ - Stores all decoration colors. So if app launched with rights to HKEY_CURRENT_USER you can read or change "AccentColor" property (and others in directory) or change the color code in hexadecimal notation on your own.
To get access to windows registry you need to install package: https://www.nuget.org/packages/Microsoft.Windows.Compatibility/
Here info about package: https://docs.microsoft.com/en-us/dotnet/core/porting/windows-compat-pack/