My trick for no background is usually just:
COLOR , 0
0, in 32-bit mode, is 0 alpha, 0 red, 0 green, 0 blue — it’s transparent nothing!
Another quick trick is the polar opposite of that: COLOR -1
-1, in 32-bit mode, because of overflow calculations, is 255 alpha, 255 red, 255 green, 255 blue — it’s solid white!
-1 = bright white.
0 = transparent. (Not to be confused with black, which has 255 alpha and not 0.)
Two quick values to easily pop in when are where needs.