Tbbs 2.3-16/SAMPLE3/COLORS.SDL

2.3 KB 7e6600b5d0a57c3a…
ANSI art: COLORS.SDL
;
; Predefined macros for displaying
; ANSI colors in your menu SDL:
;
; created by: Karl E. Glasgow IV



; USE OF ANSI WITHIN THIS SDL CODE:
; --------------------------------------------------------------------------
; Nearly all display text contained within this code incorporates
; ANSI sequences which provide cursor-movement/positioning as well
; as foreground/background color.  Most of these sequences have
; been used within MACROS, so that you can add functionality to
; your system and make minor changes to text/color displays without
; having to deal with ANSI sequences themselves directly (or
; understand their syntax).
;
; If you would like to view or alter these ANSI color macros, they
; can be found in a separate file called "COLORS.SDL".
;
; IMPORTANT NOTE:
;
; ** If you are not familiar with ANSI sequences and their meanings,
;    it is highly recommended that you not attempt to make direct
;    alterations to them until you fully understand them.
;    ANSI is an industry standard and is fairly well-documented.
;
;    For a listing of those ANSI codes supported by TBBS, refer to
;    page 2-32 through 2-34 of the TBBS (Information Manager) manual.




; FOREGROUND Colors:
; --------------------------------------

; > BLACK
Equate:  BLACK = 

; > GREY
Equate:   GREY = 

; > RED
Equate:    RED = 

; > BRIGHT RED
Equate: BRTRED = 

; > GREEN
Equate:    GRN = 

; > BRIGHT GREEN
Equate: BRTGRN = 

; > BROWN
Equate:  BROWN = 

; > YELLOW
Equate: YELLOW = 

; > BLUE
Equate:    BLU = 

; > BRIGHT BLUE
Equate: BRTBLU = 

; > MAGENTA
Equate:    MAG = 

; > BRIGHT MAGENTA
Equate: BRTMAG = 

; > CYAN
Equate:    CYN = 

; > BRIGHT CYAN
Equate: BRTCYN = 

; > WHITE
Equate:    WHT = 

; > BRIGHT WHITE
Equate: BRTWHT = 


; BACKGROUND Colors:
; --------------------------------------

; > BLACK
Equate: BCKBLK = 

; > RED
Equate: BCKRED = 

; > GREEN
Equate: BCKGRN = 

; > BROWN
Equate: BCKBRN = 

; > BLUE
Equate: BCKBLU = 

; > MAGENTA
Equate: BCKMAG = 

; > CYAN
Equate: BCKCYN = 

; > WHITE
Equate: BCKWHT =