scott created page: JoeyLib Enumerations

Scott Duensing 2018-09-06 00:23:32 +00:00
parent 2ec6d67c87
commit ea7b115513

20
JoeyLib-Enumerations.md Normal file

@ -0,0 +1,20 @@
#### jlBorderColorsE
List of valid border colors. The border color palette on the Apple IIgs is fixed. JoeyLib uses these colors on all platforms.
```c
BORDER_BLACK = 0,
BORDER_DEEP_RED = 1,
BORDER_DEEP_BLUE = 2,
BORDER_PURPLE = 3,
BORDER_DARK_GREEN = 4,
BORDER_DARK_GRAY = 5,
BORDER_MEDIUM_BLUE = 6,
BORDER_LIGHT_BLUE = 7,
BORDER_BROWN = 8,
BORDER_ORANGE = 9,
BORDER_LIGHT_GRAY = 10,
BORDER_PINK = 11,
BORDER_GREEN = 12,
BORDER_YELLOW = 13,
BORDER_AQUAMARINE = 14,
BORDER_WHITE = 15
```