// CHDK palette colors for the a720 // Define color values as needed in this file. #include "palette.h" #include "platform_palette.h" // Playback mode colors unsigned char ply_colors[] = { COLOR_TRANSPARENT, // Placeholder for script colors COLOR_BLACK, // Placeholder for script colors 0x11, // White 0x22, // Red 0x2F, // Dark Red 0x28, // Light Red 0x55, // Green 0x25, // Dark Green 0x85, // Light Green 0x9F, // Blue 0xAF, // Dark Blue 0x97, // Light Blue / Cyan 0x3F, // Grey 0x7F, // Dark Grey 0x1F, // Light Grey 0x66, // Yellow 0x6F, // Dark Yellow 0x61, // Light Yellow 0x44, // Transparent Dark Grey 0xE2, // Magenta }; // Record mode colors unsigned char rec_colors[] = { COLOR_TRANSPARENT, // Placeholder for script colors COLOR_BLACK, // Placeholder for script colors 0x11, // White 0x22, // Red 0x2F, // Dark Red 0x2C, // Light Red 0x55, // Green 0x5F, // Dark Green 0xC5, // Light Green 0xDF, // Blue 0xDF, // Dark Blue 0xDD, // Light Blue / Cyan 0x3F, // Grey 0xAF, // Dark Grey 0x1F, // Light Grey 0x66, // Yellow 0x6F, // Dark Yellow 0x6C, // Light Yellow 0x44, // Transparent Dark Grey 0xE2, // Magenta };