﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2823	_ChooseFont default color	careca777	Melba23	"
It says the default color is in RGB format, but it's BGR Color.
Following example shows this, select marron color, RGB 0x800000,
This RGB result is used in the next _ChooseFont which should open with the same color, but doesn't, it opens with navy blue, which is RGB 0x000080 OR BGR 0x800000!

All there is to do is change in the help file parameter:
""$iColorRef [optional] COLORREF rgbColors"" to BRG colors, or fix the parameter to accept RGB.

{{{
#include <Misc.au3>
#include <MsgBoxConstants.au3>

Local $a_font = _ChooseFont(""Arial"", 8)
MsgBox($MB_SYSTEMMODAL, """", ""Hex BGR Color: "" & $a_font[6] & @CRLF & ""Hex RGB Color: "" & $a_font[7])
$ChosenColor = $a_font[7]
Local $a_font = _ChooseFont(""Arial"", 8, $ChosenColor)
}}}
"	Bug	closed	3.3.13.15	AutoIt	3.3.12.0	None	Completed		
