unsigned char grayscale_palette[38] = { 0x08, 0x21, /* 0: rgb( 90, 61, 41) --> grayscale( 63) */ 0xff, 0xff, /* 1: rgb(255, 130, 132) --> grayscale(255) */ 0xef, 0xbd, /* 2: rgb(255, 0, 255) --> grayscale(127) */ 0x39, 0xe7, /* 3: rgb(255, 130, 255) --> grayscale(191) */ 0x00, 0x00, /* 4: rgb( 25, 28, 99) --> grayscale( 0) */ 0xff, 0xff, /* 5: rgb(156, 154, 230) --> grayscale(255) */ 0xff, 0xff, /* 6: rgb(255, 255, 255) --> grayscale(255) */ 0xef, 0xbd, /* 7: rgb(181, 121, 90) --> grayscale(127) */ 0x00, 0x00, /* 8: rgb(132, 0, 0) --> grayscale( 0) */ 0x00, 0x00, /* 9: rgb( 0, 0, 0) --> grayscale( 0) */ 0x08, 0x21, /* 10: rgb( 66, 65, 66) --> grayscale( 63) */ 0xef, 0xbd, /* 11: rgb( 41, 215, 82) --> grayscale(127) */ 0x39, 0xe7, /* 12: rgb(148, 235, 173) --> grayscale(191) */ 0x08, 0x21, /* 13: rgb( 25, 105, 41) --> grayscale( 63) */ 0xef, 0xbd, /* 14: rgb(123, 125, 123) --> grayscale(127) */ 0x39, 0xe7, /* 15: rgb(255, 65, 66) --> grayscale(191) */ 0xef, 0xbd, /* 16: rgb(255, 0, 0) --> grayscale(127) */ 0x39, 0xe7, /* 17: rgb(107, 105, 214) --> grayscale(191) */ 0xef, 0xbd, /* 18: rgb( 49, 53, 206) --> grayscale(127) */ };