root/platform/sx120is/platform_palette.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // CHDK palette colors for the sx120is
   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         0x27,                       // Red
  14         0x2C,                       // Dark Red
  15         0x20,                       // Light Red
  16         0xCB,                       // Green
  17         0xCB,                       // Dark Green
  18         0xCB,                       // Light Green
  19         0xA1,                       // Blue
  20         0xA1,                       // Dark Blue
  21         0xA9,                       // Light Blue / Cyan
  22         0x17,                       // Grey
  23         0x10,                       // Dark Grey
  24         0x19,                       // Light Grey
  25         0xBE,                       // Yellow
  26         0x76,                       // Dark Yellow
  27         0x5A,                       // Light Yellow
  28         0x10,                       // Transparent Dark Grey
  29         COLOR_BLACK,                       // 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         0x1E,                       // Red
  39         0xA0,                       // Dark Red
  40         0x26,                       // Light Red
  41         0x47,                       // Green
  42         0x4A,                       // Dark Green
  43         0x44,                       // Light Green
  44         0xA1,                       // Blue
  45         0xA1,                       // Dark Blue
  46         0xA9,                       // Light Blue / Cyan
  47         0x17,                       // Grey
  48         0x10,                       // Dark Grey
  49         0x19,                       // Light Grey
  50         0x69,                       // Yellow
  51         0x9A,                       // Dark Yellow
  52         0x78,                       // Light Yellow
  53         0x10,                       // Transparent Dark Grey
  54         COLOR_BLACK,                       // Magenta
  55 };
  56 

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