1 // CHDK palette colors for the sx130is 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 0xA0, // Red 14 0xA0, // Dark Red 15 0xA0, // Light Red 16 0xA1, // Green 17 0xA1, // Dark Green 18 0xA1, // Light Green 19 0xA2, // Blue 20 0x14, // Dark Blue 21 0x10, // Light Blue / Cyan 22 0x1a, // Grey 23 0x19, // Dark Grey 24 0x10, // Light Grey 25 0x6A, // Yellow 26 0x6F, // Dark Yellow 27 0x63, // Light Yellow 28 0x19, // Transparent Dark Grey 29 0x1e, // 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 0x66, // Red 39 0x66, // Dark Red 40 0x66, // Light Red 41 0x6B, // Green 42 0x6B, // Dark Green 43 0x69, // Light Green 44 0x61, // Blue 45 0x14, // Dark Blue 46 0x10, // Light Blue / Cyan 47 0x1a, // Grey 48 0x19, // Dark Grey 49 0x10, // Light Grey 50 0x60, // Yellow 51 0x45, // Dark Yellow 52 0x6C, // Light Yellow 53 0x19, // Transparent Dark Grey 54 0x1e, // Magenta 55 }; 56