...no not really.
What tabs are you missing that you see on the help file? Left side, right side, both?

(image source: https://www.purebasic.com/documentation ... start.html)

Code: Select all
Define xcolor.s
xcolor = (ReplaceString("#3030E0","#","$"))
Debug Red(Val(xcolor))
Debug Blue(Val(xcolor))
Debug Green(Val(xcolor))
;And back to hex to verify...
Debug Hex(RGB(Red(Val(xcolor)),Green(Val(xcolor)),Blue(Val(xcolor))))