1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 13:50:36 +00:00
QB64-PE/internal/support/color/color0.bi
FellippeHeitor 898c0ffedb Begins folder reorganization (internal/support).
For .bas/.bm/.bi files that are required at compilation time, as opposed to `source`, which is not required for normal operation.
2021-07-22 18:39:20 -03:00

21 lines
400 B
Plaintext

'$COLOR:0
'Color constants for text mode.
CONST Black~%% = 0
CONST Blue~%% = 1
CONST Green~%% = 2
CONST Cyan~%% = 3
CONST Red~%% = 4
CONST Magenta~%% = 5
CONST Brown~%% = 6
CONST White~%% = 7
CONST Gray~%% = 8
CONST LightBlue~%% = 9
CONST LightGreen~%% = 10
CONST LightCyan~%% = 11
CONST LightRed~%% = 12
CONST LightMagenta~%% = 13
CONST Yellow~%% = 14
CONST BrightWhite~%% = 15
CONST Blink~%% = 16