Probably because you need one variable per CONST:
Code: QB64 [Select]
CONST Blu = _RGB32(0, 0, 255): CONST Green = _RGB32(0, 255, 0) 'works
Why woul three CONST separated by colons ":" be any different than having three CONST on different lines?
I always thought ":" was equivalent to a new line.