diff options
Diffstat (limited to 'experiments/conv/consts.py')
-rw-r--r-- | experiments/conv/consts.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/experiments/conv/consts.py b/experiments/conv/consts.py new file mode 100644 index 0000000..898bd3d --- /dev/null +++ b/experiments/conv/consts.py @@ -0,0 +1,18 @@ +PICTOCHAT_PALETTE = ( + (0xff, 0xff, 0xff), + (0x00, 0x00, 0x00), + (0xd3, 0xcb, 0xc3), + (0xeb, 0x00, 0xeb), + (0xfb, 0x00, 0x8a), + (0xfb, 0x00, 0x28), + (0xfb, 0x49, 0x00), + (0xfb, 0xa2, 0x00), + (0xe3, 0xf3, 0x00), + (0x82, 0xfb, 0x00), + (0x10, 0xfb, 0x20), + (0x00, 0xfb, 0xba), + (0x00, 0xc3, 0xfb), + (0x00, 0x79, 0xfb), + (0x00, 0x30, 0xfb), + (0x28, 0x00, 0xfb), +) |