root/platform/a3100/platform_palette.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // CHDK palette colors for the a3100
   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         0x11,                       // White
  13         0x02,                       // Red
  14         0x22,                       // Dark Red
  15         0x24,                       // Light Red
  16         0x0c,                       // Green
  17         0x25,                       // Dark Green
  18         0x51,                       // Light Green
  19         0x00,                       // Blue
  20         0x00,                       // Dark Blue
  21         0x4e,                       // Light Blue / Cyan
  22         0x66,                       // Grey
  23         0x37,                       // Dark Grey
  24         0x66,                       // Light Grey
  25         0xf0,                       // Yellow
  26         0x6F,                       // Dark Yellow
  27         0x66,                       // Light Yellow
  28         0x37,                       // Transparent Dark Grey
  29         0xf0,                       // 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         0x11,                       // White
  38         0x62,                       // Red
  39         0x72,                       // Dark Red
  40         0x52,                       // Light Red
  41         0xc6,                       // Green
  42         0xc7,                       // Dark Green
  43         0xc5,                       // Light Green
  44         0xe3,                       // Blue
  45         0x00,                       // Dark Blue
  46         0x4e,                       // Light Blue / Cyan
  47         0x66,                       // Grey
  48         0x77,                       // Dark Grey
  49         0x55,                       // Light Grey
  50         0x9d,                       // Yellow
  51         0x9c,                       // Dark Yellow
  52         0x8d,                       // Light Yellow
  53         0x77,                       // Transparent Dark Grey
  54         0xf0,                       // Magenta
  55 };
  56 

/* [<][>][^][v][top][bottom][index][help] */