The font color is purple
The background is grey
The border is black
I'd like to change the border to my selection
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
$gui = guicreate("TEST", 200, 100)
$label = guictrlcreatelabel("LABEL", 5, 5, 80, 20, $WS_BORDER)
GUICtrlSetBkColor(-1, 0xb0c4de)
GUICtrlSetColor(-1, 0x483d8d)
GUISetState(@SW_SHOW)
While 1
$msg = GUIGetMsg()
select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
endselect
WEnd