1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-09 22:25:12 +00:00
QB64-PE/internal/support/color/color0_noprefix.bi

20 lines
454 B
Plaintext
Raw Normal View History

'$COLOR:0
'Color constants for text mode, when using $NOPREFIX
CONST C_Black~%% = 0
CONST C_Blue~%% = 1
CONST C_Green~%% = 2
CONST C_Cyan~%% = 3
CONST C_Red~%% = 4
CONST C_Magenta~%% = 5
CONST C_Brown~%% = 6
CONST C_White~%% = 7
CONST C_Gray~%% = 8
CONST C_LightBlue~%% = 9
CONST C_LightGreen~%% = 10
CONST C_LightCyan~%% = 11
CONST C_LightRed~%% = 12
CONST C_LightMagenta~%% = 13
CONST C_Yellow~%% = 14
CONST C_BrightWhite~%% = 15
CONST C_Blink~%% = 16