Stepwise/source/colors.py
Kayne Ruse a7064e3db0 Added ranged Useables, TileSelector
Added ScrollOfLightning as an example.

Not finished yet, confusion & fireball are still in part 9.
2025-04-05 19:06:23 +11:00

37 lines
1.0 KiB
Python

#url: https://en.wikipedia.org/wiki/Web_colors
#CSS standard colors
white = (0xFF, 0xFF, 0xFF)
silver = (0xC0, 0xC0, 0xC0)
gray = (0x80, 0x80, 0x80)
black = (0x00, 0x00, 0x00)
red = (0xFF, 0x00, 0x00)
maroon = (0x80, 0x00, 0x00)
yellow = (0xFF, 0xFF, 0x00)
olive = (0x80, 0x80, 0x00)
lime = (0x00, 0xFF, 0x00)
green = (0x00, 0x80, 0x00)
aqua = (0x00, 0xFF, 0xFF) #identical to cyan
teal = (0x00, 0x80, 0x80)
blue = (0x00, 0x00, 0xFF)
navy = (0x00, 0x00, 0x80)
fuchsia = (0xFF, 0x00, 0xFF)
purple = (0x80, 0x00, 0x80) #identical to magenta
#CSS extended colors (incomplete selection, may be expanded later)
pink = (0xFF, 0xC0, 0xCB)
orange = (0xFF, 0xA5, 0x00)
deep_sky_blue = (0x00, 0xBF, 0xFF)
navajo_white = (0xFF, 0xDE, 0xAD) #misnomer
goldenrod = (0xDA, 0xA5, 0x20)
#gameboy DMG-01
gameboy_00 = (0x29, 0x41, 0x39)
gameboy_01 = (0x39, 0x59, 0x4a)
gameboy_02 = (0x5a, 0x79, 0x42)
gameboy_03 = (0x7b, 0x82, 0x10)
#terminal-like
terminal_light = (200, 200, 200)
terminal_dark = (100, 100, 100)