1 // CHDK palette colors for the ixus230_elph310hs 2 3 // Define color values as needed in this file. 4 // Values not defined here will be set to default values in core/gui_draw.h 5 // See comments in core/gui_draw.h for more details on CHDK color definitions. 6 7 // #define COLOR_WHITE 0x01 8 // #define COLOR_RED 0x9f 9 // #define COLOR_GREY 0x1a 10 // #define COLOR_GREY_LIGHT 0x0B 11 // #define COLOR_GREY_DARK 0x19 12 // #define COLOR_GREEN 0xa0 13 // #define COLOR_BLUE_LT 0x96 14 // #define COLOR_BLUE 0xa1 15 // #define COLOR_YELLOW 0x92 16 // #define COLOR_GREY_DK 0x4B 17 // #define COLOR_RED_DK COLOR_RED 18 // #define COLOR_RED_LT 0x1e // Orange 19 // #define COLOR_GREY_LT 0x16 20 // Override histogram colors if needed 21 // #define COLOR_REC_RED 0x6C 22 // #define COLOR_REC_BLUE 0x6D 23 // #define COLOR_REC_GREEN 0x90 24 // #define COLOR_REC_CYAN 0x52 //COLOR_BLUE_LT 25 // #define COLOR_REC_YELLOW 0x51 //COLOR_YELLOW 26 // #define COLOR_REC_MAGENTA 0x3D //COLOR_RED 27 // #define COLOR_PLY_MAGENTA COLOR_REC_MAGENTA 28 29 // Icon colors 30 // 3 shades of Red, Green, Yellow and Grey 31 // Separate definitions for record and playback mode 32 // to cater for cameras with variable palettes 33 // #define COLOR_ICON_REC_RED 0x3D 34 // #define COLOR_ICON_REC_RED_DK 0x6C 35 // #define COLOR_ICON_REC_RED_LT 0x1E 36 // #define COLOR_ICON_REC_GREEN 0x90 37 // #define COLOR_ICON_REC_GREEN_DK 0x5A 38 // #define COLOR_ICON_REC_GREEN_LT 0x59 39 // #define COLOR_ICON_REC_YELLOW 0x2D 40 // #define COLOR_ICON_REC_YELLOW_DK 0x1E 41 // #define COLOR_ICON_REC_YELLOW_LT 0x20 42 // #define COLOR_ICON_REC_GREY COLOR_GREY 43 // #define COLOR_ICON_REC_GREY_DK 0x1A 44 // #define COLOR_ICON_REC_GREY_LT 0x11 45 // #define COLOR_ICON_PLY_RED 0x9F 46 // #define COLOR_ICON_PLY_RED_DK 0x9F 47 // #define COLOR_ICON_PLY_RED_LT 0x1E 48 // #define COLOR_ICON_PLY_GREEN 0xA0 49 // #define COLOR_ICON_PLY_GREEN_DK 0xA0 50 // #define COLOR_ICON_PLY_GREEN_LT 0x9E 51 // #define COLOR_ICON_PLY_YELLOW 0x55 52 // #define COLOR_ICON_PLY_YELLOW_DK 0x55 53 // #define COLOR_ICON_PLY_YELLOW_LT 0x4C 54 // #define COLOR_ICON_PLY_GREY COLOR_ICON_REC_GREY 55 // #define COLOR_ICON_PLY_GREY_DK COLOR_ICON_REC_GREY_DK 56 // #define COLOR_ICON_PLY_GREY_LT COLOR_ICON_REC_GREY_LT 57