24 lines
523 B
Python
24 lines
523 B
Python
#Standard colors
|
|
white = (0xFF, 0xFF, 0xFF)
|
|
black = (0x0, 0x0, 0x0)
|
|
|
|
red = (0xFF, 0, 0)
|
|
green = (0, 0xFF, 0)
|
|
blue = (0, 0, 0xFF)
|
|
|
|
yellow = (0xFF, 0xFF, 0)
|
|
magenta = (0xFF, 0, 0xFF)
|
|
cyan = (0, 0xFF, 0xFF)
|
|
|
|
#gameboy DMG-01, according to Wikipedia's CSS
|
|
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)
|
|
|
|
#extended colors
|
|
orange = (0xFF, 0xA5, 0x00) |