Nothing complex here. Just making easy to change debug colors.
...
;Debug colors
$RGBbasico textequ <$RGB(230,230,230)> ; for dark background
;$RGBbasico textequ <$RGB( 0, 0, 0)> ; for bright background
$RGBred textequ <$RGB(255, 0, 0)>
$RGBblue textequ <$RGB( 0, 0,255)>
$RGBgray1 textequ <$RGB(128,128,128)>
$RGBgreen0 textequ <$RGB( 0,160, 0)>
$RGBgreen1 textequ <$RGB( 50,150, 50)> ; DbgFPU
$RGBblue1 textequ <$RGB( 64, 64,255)> ; DbgObject
$RGBblue2 textequ <$RGB( 63, 63,255)> ; DbgVMT
$RGBorange textequ <$RGB(192, 64, 64)>
...
Regards.