DWORD WINAPI GetSysColor(
_In_ int nIndex
);
For the GetSysColor() function, if the nIndex parameter is out of range, the return value is zero. Because zero is also a valid RGB value, you cannot use GetSysColor() to determine whether a system color is supported by the current platform. Instead, use the GetSysColorBrush() function, which returns NULL if the color is not supported.
Click to see the syntax and usage.
Another option is to use the DwmGetColorizationColor() function which can retrieve the current color used for Desktop Window Manager (DWM) glass composition. This value is based on the current color scheme and can be modified by the user. Applications can listen for color changes by handling the WM_DWMCOLORIZATIONCOLORCHANGED notification.
HRESULT WINAPI DwmGetColorizationColor(
_Out_ DWORD *pcrColorization,
_Out_ BOOL *pfOpaqueBlend
);