1 // CHDK palette colors for the sx150is 2 // Define color values as needed in this file. 3 4 #include "palette.h" 5 #include "platform_palette.h" 6 7 // Playback mode colors 8 unsigned char ply_colors[] = 9 { 10 COLOR_TRANSPARENT, // Placeholder for script colors 11 COLOR_BLACK, // Placeholder for script colors 12 0x01, // White 13 0x9f, // Red 14 0x1e, // Dark Red 15 0x1e, // Light Red 16 0xa0, // Green 17 0xa0, // Dark Green 18 0x9e, // Light Green 19 0xa1, // Blue 20 0xa1, // Dark Blue 21 0xa1, // Light Blue / Cyan 22 0x0e, // Grey 23 0x11, // Dark Grey 24 0x0a, // Light Grey 25 0x92, // Yellow 26 0x91, // Dark Yellow 27 0x90, // Light Yellow 28 0x9d, // Transparent Dark Grey 29 0x93, // Magenta 30 }; 31 32 // Record mode colors 33 unsigned char rec_colors[] = 34 { 35 COLOR_TRANSPARENT, // Placeholder for script colors 36 COLOR_BLACK, // Placeholder for script colors 37 0x01, // White 38 0x5d, // Red 39 0x1e, // Dark Red 40 0x3d, // Light Red 41 0x81, // Green 42 0x5a, // Dark Green 43 0x59, // Light Green 44 0x5e, // Blue 45 0x5e, // Dark Blue 46 0x58, // Light Blue / Cyan 47 0x0e, // Grey 48 0x11, // Dark Grey 49 0x0a, // Light Grey 50 0x51, // Yellow 51 0x84, // Dark Yellow 52 0x5f, // Light Yellow 53 0x53, // Transparent Dark Grey 54 0x60, // Magenta 55 }; 56