1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-06 02:20:25 +00:00
QB64-PE/internal/support/color/color0_noprefix.bi
Kit 72126a1289
Make $NOPREFIX-friendly versions of $COLOR includes (#206)
* Create `$NOPREFIX`-friendly version of `color0.bi`

* Create color32_noprefix.bi

* add conditional for noprefix $color

* oh. it was that easy?

* Update CHANGELOG.md

* Update help files [ci-skip]

Co-authored-by: all-other-usernames-were-taken <74026992+all-other-usernames-were-taken@users.noreply.github.com>
2021-11-05 01:46:28 -03:00

20 lines
454 B
Plaintext

'$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