Im trying to change the color of the console (WHICH IS POSSIBLE!) with this code:
COLOR 7
PRINT "Color 7 is gray"
K$ = INPUT$(1)
_PALETTECOLOR 7, &HFFDAA520 ' FF alpha makes the color translucent
PRINT "Color 7 is now Goldenrod in SCREEN 0!
However when running it, I get an error Message. Not to mention that the color doesn't change.
What is the proper way to do this?