$Color = _WinAPI_GetSysColor($COLOR_3DFACE) ; BGR
$Color = _SwitchColor(_WinAPI_GetSysColor($COLOR_3DFACE)) ; RGB
Func _SwitchColor($iColor)
Return BitOR(BitAND($iColor, 0x00FF00), BitShift(BitAND($iColor, 0x0000FF), -16), BitShift(BitAND($iColor, 0xFF0000), 16))
EndFunc ;==>_SwitchColor