PokittoLib is the library needed for programming the Pokitto DIY game console (www.pokitto.com)

Dependents:   YATTT sd_map_test cPong SnowDemo ... more

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers palMono.cpp Source File

palMono.cpp

00001 #include "PokittoPalettes.h"
00002 
00003 const unsigned char paletteMono[48] = {
00004 0xFF,0xFF,0xFF, //white
00005 0xAA,0xAA,0xAA, //light gray
00006 0x55,0x55,0x55, //dark gray
00007 0x00,0x00,0x00, //black
00008 
00009 0xFF,0xea,0xed, //white ffeaed
00010 0xA1,0xce,0xe8, //light gray a1cee8
00011 0x00,0x92,0xb6, //dark gray 0092b6
00012 0x66,0x00,0x5f, //black 66005f
00013 
00014 0xed,0xFf,0xea, //white edffea
00015 0xff,0xb1,0xe2, //light gray efa1ce ffb1e2
00016 0xb6,0x00,0x92, //dark gray b60092
00017 0x5f,0x66,0x00, //black 5f6600
00018 
00019 0xFF,0xFF,0xFF, //white
00020 0xAA,0xAA,0xAA, //light gray
00021 0x55,0x55,0x55, //dark gray
00022 0x00,0x00,0x00, //black
00023 };
00024