freepassport-c/src/theme.h
2026-03-28 16:56:50 -04:00

637 lines
27 KiB
C

#ifndef THEME_H
#define THEME_H
#include <SDL2/SDL.h>
typedef enum AppMode {
MODE_FULLSCREEN = 0,
MODE_GUIDE = 1
} AppMode;
typedef struct GuideTheme {
const char *name;
SDL_Color background_top;
SDL_Color background_mid;
SDL_Color background_bottom;
SDL_Color panel_fill;
SDL_Color panel_text;
SDL_Color panel_border;
SDL_Color status_divider;
SDL_Color status_text;
SDL_Color status_top;
SDL_Color status_mid;
SDL_Color status_bottom;
SDL_Color ribbon_top;
SDL_Color ribbon_mid;
SDL_Color ribbon_bottom;
SDL_Color ribbon_text;
SDL_Color row_top;
SDL_Color row_mid;
SDL_Color row_bottom;
SDL_Color row_active_top;
SDL_Color row_active_mid;
SDL_Color row_active_bottom;
SDL_Color row_text;
SDL_Color row_subtext;
SDL_Color row_active_text;
SDL_Color row_active_subtext;
SDL_Color block_top;
SDL_Color block_mid;
SDL_Color block_bottom;
SDL_Color block_active_top;
SDL_Color block_active_mid;
SDL_Color block_active_bottom;
SDL_Color block_text;
SDL_Color block_active_text;
SDL_Color block_border;
SDL_Color block_active_border;
SDL_Color selection_edge;
SDL_Color grid_line;
SDL_Color row_line_hi;
SDL_Color row_line_lo;
SDL_Color footer_top;
SDL_Color footer_mid;
SDL_Color footer_bottom;
SDL_Color footer_text;
SDL_Color pill_light;
SDL_Color pill_shadow;
SDL_Color gloss;
SDL_Color scanline;
int rounded_radius;
} GuideTheme;
static const SDL_Color COLOR_DEEP_BLUE = {0x00, 0x33, 0x99, 0xff};
static const SDL_Color COLOR_HIGHLIGHT_YELLOW = {0xff, 0xd7, 0x00, 0xff};
static const SDL_Color COLOR_HINT_RED = {0xcc, 0x00, 0x00, 0xff};
static const SDL_Color COLOR_NAVY_DARK = {0x05, 0x16, 0x46, 0xff};
static const SDL_Color COLOR_SLATE = {0x52, 0x67, 0x96, 0xff};
static const SDL_Color COLOR_PALE_BLUE = {0xcc, 0xd8, 0xf3, 0xff};
static const SDL_Color COLOR_TEXT_LIGHT = {0xf5, 0xf7, 0xfa, 0xff};
static const SDL_Color COLOR_TEXT_DARK = {0x0b, 0x11, 0x1d, 0xff};
static const SDL_Color COLOR_BLACK = {0x00, 0x00, 0x00, 0xff};
static const SDL_Color COLOR_HEADER_SILVER = {0xe6, 0xe6, 0xe6, 0xff};
static const SDL_Color COLOR_SELECTED_ROW = {0x14, 0x0d, 0x23, 0xff};
static const SDL_Color COLOR_UNSELECTED_ROW = {0x33, 0x44, 0x66, 0xff};
static const SDL_Color COLOR_GUIDE_TOP = {0x4b, 0x3d, 0x8f, 0xff};
static const SDL_Color COLOR_GUIDE_BOTTOM = {0x2e, 0x24, 0x5e, 0xff};
static const SDL_Color COLOR_GRID_LINE = {0x89, 0xa0, 0xc5, 0xff};
static const SDL_Color COLOR_PANEL_TEXT = {0x12, 0x18, 0x24, 0xff};
static const SDL_Color COLOR_PANEL_SHADOW = {0x00, 0x00, 0x00, 0x60};
static const SDL_Color COLOR_STATUS_DIVIDER = {0xb0, 0xb8, 0xc7, 0xff};
static const SDL_Color COLOR_BLOCK_UNSELECTED = {0x1f, 0x5d, 0xc1, 0xff};
static const SDL_Color COLOR_BLOCK_SELECTED = {0xff, 0xd7, 0x00, 0xff};
static const SDL_Color COLOR_SELECTION_EDGE = {0xff, 0xf1, 0x8b, 0xff};
static const SDL_Color COLOR_BORDER_DARK = {0x5b, 0x63, 0x72, 0xff};
static const SDL_Color COLOR_GLOSS = {0xff, 0xff, 0xff, 0x80};
static const SDL_Color COLOR_RIBBON_TOP = {0x44, 0x2a, 0x88, 0xff};
static const SDL_Color COLOR_RIBBON_BOTTOM = {0x1a, 0x1f, 0x63, 0xff};
static const SDL_Color COLOR_ROW_TOP = {0x4f, 0x5e, 0x85, 0xff};
static const SDL_Color COLOR_ROW_MID = {0x39, 0x49, 0x72, 0xff};
static const SDL_Color COLOR_ROW_BOTTOM = {0x25, 0x31, 0x4f, 0xff};
static const SDL_Color COLOR_ROW_ACTIVE_TOP = {0x34, 0x24, 0x55, 0xff};
static const SDL_Color COLOR_ROW_ACTIVE_MID = {0x18, 0x10, 0x2e, 0xff};
static const SDL_Color COLOR_ROW_ACTIVE_BOTTOM = {0x0a, 0x07, 0x16, 0xff};
static const SDL_Color COLOR_BLOCK_TOP = {0x66, 0x8d, 0xe8, 0xff};
static const SDL_Color COLOR_BLOCK_MID = {0x3b, 0x69, 0xd5, 0xff};
static const SDL_Color COLOR_BLOCK_BOTTOM = {0x1a, 0x42, 0x9c, 0xff};
static const SDL_Color COLOR_BLOCK_ACTIVE_TOP = {0xff, 0xef, 0xa2, 0xff};
static const SDL_Color COLOR_BLOCK_ACTIVE_MID = {0xff, 0xdb, 0x48, 0xff};
static const SDL_Color COLOR_BLOCK_ACTIVE_BOTTOM = {0xd1, 0x9f, 0x00, 0xff};
static const SDL_Color COLOR_ACTIVE_TEXT = {0xff, 0xcc, 0x00, 0xff};
static const SDL_Color COLOR_ROW_LINE_HI = {0x6a, 0x5c, 0xa9, 0xff};
static const SDL_Color COLOR_ROW_LINE_LO = {0x1f, 0x17, 0x43, 0xff};
static const SDL_Color COLOR_BUTTON_BAR_TOP = {0xf3, 0xf3, 0xf3, 0xff};
static const SDL_Color COLOR_BUTTON_BAR_BOTTOM = {0xc7, 0xcc, 0xd6, 0xff};
static const SDL_Color COLOR_PILL_LIGHT = {0xfa, 0xfb, 0xff, 0xff};
static const SDL_Color COLOR_PILL_SHADOW = {0x00, 0x00, 0x00, 0x40};
#define WINDOW_WIDTH 1280
#define WINDOW_HEIGHT 720
#define GUIDE_VISIBLE_ROWS 5
#define TIMELINE_VISIBLE_SECONDS (90.0 * 60.0)
#define GUIDE_INFO_WIDTH 390
#define GUIDE_PREVIEW_WIDTH 430
#define GUIDE_PREVIEW_HEIGHT 194
#define GUIDE_STATUS_HEIGHT 42
#define GUIDE_GRID_TOP 212
#define GUIDE_FOOTER_HEIGHT 54
#define GUIDE_SIDEBAR_WIDTH 246
#define GUIDE_X_START 258
#define GUIDE_INFO_HEIGHT 184
#define GUIDE_THEME_COUNT 10
static const GuideTheme GUIDE_THEMES[GUIDE_THEME_COUNT] = {
{
.name = "CLASSIC PASSPORT",
.background_top = {0xb8,0xc4,0xd0,0xff},
.background_mid = {0x90,0x9e,0xae,0xff},
.background_bottom = {0x6b,0x7b,0x8c,0xff},
.panel_fill = {0xff,0xd7,0x00,0xff},
.panel_text = {0xff,0xff,0xff,0xff},
.panel_border = {0x5a,0x6a,0x7a,0xff},
.status_divider = {0x5a,0x6a,0x7a,0xff},
.status_text = {0x11,0x18,0x24,0xff},
.status_top = {0xee,0xf2,0xf6,0xff},
.status_mid = {0xd7,0xe0,0xe8,0xff},
.status_bottom = {0xbf,0xca,0xd4,0xff},
.ribbon_top = {0x3f,0x5c,0x8c,0xff},
.ribbon_mid = {0x2d,0x4b,0x73,0xff},
.ribbon_bottom = {0x1e,0x3a,0x5f,0xff},
.ribbon_text = {0xff,0xff,0xff,0xff},
.row_top = {0x58,0x67,0x78,0xff},
.row_mid = {0x4a,0x55,0x68,0xff},
.row_bottom = {0x3d,0x48,0x59,0xff},
.row_active_top = {0x2a,0x49,0x72,0xff},
.row_active_mid = {0x1e,0x3a,0x5f,0xff},
.row_active_bottom = {0x17,0x2c,0x49,0xff},
.row_text = {0xff,0xff,0xff,0xff},
.row_subtext = {0xe8,0xee,0xf5,0xff},
.row_active_text = {0xff,0xd7,0x00,0xff},
.row_active_subtext = {0xff,0xf2,0xb8,0xff},
.block_top = {0x5a,0x67,0x80,0xff},
.block_mid = {0x4a,0x55,0x68,0xff},
.block_bottom = {0x3f,0x49,0x59,0xff},
.block_active_top = {0x4a,0x90,0xe2,0xff},
.block_active_mid = {0x2e,0x4a,0x6f,0xff},
.block_active_bottom = {0x1f,0x33,0x4f,0xff},
.block_text = {0xff,0xff,0xff,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0xcc,0xd8,0xe8,0xff},
.block_active_border = {0xe8,0xf0,0xf8,0xff},
.selection_edge = {0x4a,0x90,0xe2,0xff},
.grid_line = {0x5a,0x6a,0x7a,0xaa},
.row_line_hi = {0x7a,0x8a,0x9a,0xff},
.row_line_lo = {0x34,0x42,0x50,0xff},
.footer_top = {0xf3,0xf3,0xf3,0xff},
.footer_mid = {0xdd,0xdd,0xdd,0xff},
.footer_bottom = {0xc5,0xcc,0xd6,0xff},
.footer_text = {0x11,0x18,0x24,0xff},
.pill_light = {0xfa,0xfb,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x80},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 8
},
{
.name = "LATE NIGHT CABLE",
.background_top = {0x1a,0x1a,0x2e,0xff},
.background_mid = {0x17,0x20,0x36,0xff},
.background_bottom = {0x16,0x21,0x3e,0xff},
.panel_fill = {0xd4,0xaf,0x37,0xff},
.panel_text = {0xea,0xea,0xea,0xff},
.panel_border = {0x54,0x50,0x62,0xff},
.status_divider = {0x70,0x60,0x60,0xff},
.status_text = {0x10,0x10,0x16,0xff},
.status_top = {0xe8,0xe6,0xdd,0xff},
.status_mid = {0xd7,0xd3,0xc8,0xff},
.status_bottom = {0xc3,0xbd,0xb0,0xff},
.ribbon_top = {0x30,0x1f,0x57,0xff},
.ribbon_mid = {0x21,0x1d,0x47,0xff},
.ribbon_bottom = {0x14,0x18,0x3a,0xff},
.ribbon_text = {0xea,0xea,0xea,0xff},
.row_top = {0x22,0x26,0x44,0xff},
.row_mid = {0x18,0x22,0x3f,0xff},
.row_bottom = {0x14,0x1b,0x33,0xff},
.row_active_top = {0x16,0x2a,0x4d,0xff},
.row_active_mid = {0x0f,0x34,0x60,0xff},
.row_active_bottom = {0x0a,0x1d,0x35,0xff},
.row_text = {0xd0,0xd0,0xd0,0xff},
.row_subtext = {0xb8,0xb8,0xb8,0xff},
.row_active_text = {0xea,0xea,0xea,0xff},
.row_active_subtext = {0xd2,0xd2,0xd2,0xff},
.block_top = {0x20,0x28,0x4b,0xff},
.block_mid = {0x1a,0x21,0x3e,0xff},
.block_bottom = {0x12,0x17,0x2e,0xff},
.block_active_top = {0x69,0x47,0x96,0xff},
.block_active_mid = {0x53,0x34,0x83,0xff},
.block_active_bottom = {0x36,0x1f,0x5f,0xff},
.block_text = {0xea,0xea,0xea,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0x4a,0x4a,0x5a,0xff},
.block_active_border = {0x8a,0x7a,0xa6,0xff},
.selection_edge = {0xe9,0x45,0x60,0xff},
.grid_line = {0x64,0x68,0x7a,0xaa},
.row_line_hi = {0x3b,0x3d,0x55,0xff},
.row_line_lo = {0x0b,0x10,0x22,0xff},
.footer_top = {0xe6,0xe6,0xe6,0xff},
.footer_mid = {0xcf,0xcf,0xcf,0xff},
.footer_bottom = {0xb1,0xb1,0xb1,0xff},
.footer_text = {0x10,0x10,0x16,0xff},
.pill_light = {0xf4,0xf4,0xf8,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x70},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 8
},
{
.name = "SPORTS CENTER",
.background_top = {0x1e,0x3a,0x8a,0xff},
.background_mid = {0x1a,0x31,0x72,0xff},
.background_bottom = {0x17,0x25,0x54,0xff},
.panel_fill = {0xff,0x6b,0x00,0xff},
.panel_text = {0xff,0xff,0xff,0xff},
.panel_border = {0x17,0x25,0x54,0xff},
.status_divider = {0x88,0x88,0x88,0xff},
.status_text = {0x12,0x18,0x24,0xff},
.status_top = {0xf0,0xf3,0xf7,0xff},
.status_mid = {0xe2,0xe8,0xee,0xff},
.status_bottom = {0xcf,0xd8,0xe3,0xff},
.ribbon_top = {0x2a,0x49,0x94,0xff},
.ribbon_mid = {0x1f,0x40,0x84,0xff},
.ribbon_bottom = {0x17,0x25,0x54,0xff},
.ribbon_text = {0xff,0xff,0xff,0xff},
.row_top = {0x2b,0x4a,0x9f,0xff},
.row_mid = {0x20,0x43,0x90,0xff},
.row_bottom = {0x17,0x31,0x71,0xff},
.row_active_top = {0xdc,0x26,0x26,0xff},
.row_active_mid = {0xb9,0x1c,0x1c,0xff},
.row_active_bottom = {0x7f,0x1d,0x1d,0xff},
.row_text = {0xff,0xff,0xff,0xff},
.row_subtext = {0xe6,0xee,0xff,0xff},
.row_active_text = {0xff,0xcc,0x00,0xff},
.row_active_subtext = {0xff,0xea,0x99,0xff},
.block_top = {0x39,0x7a,0xf0,0xff},
.block_mid = {0x25,0x63,0xeb,0xff},
.block_bottom = {0x1e,0x40,0xaf,0xff},
.block_active_top = {0xff,0x89,0x40,0xff},
.block_active_mid = {0xff,0x6b,0x00,0xff},
.block_active_bottom = {0xdc,0x26,0x26,0xff},
.block_text = {0xff,0xff,0xff,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0x6a,0x9a,0xf8,0xff},
.block_active_border = {0xff,0xba,0x80,0xff},
.selection_edge = {0xff,0xff,0xff,0xff},
.grid_line = {0x85,0xa0,0xff,0xaa},
.row_line_hi = {0x6a,0x8d,0xff,0xff},
.row_line_lo = {0x0e,0x1b,0x43,0xff},
.footer_top = {0xf1,0xf3,0xf7,0xff},
.footer_mid = {0xe3,0xe7,0xec,0xff},
.footer_bottom = {0xc7,0xd0,0xdd,0xff},
.footer_text = {0x12,0x18,0x24,0xff},
.pill_light = {0xff,0xff,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x70},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 8
},
{
.name = "VAPORWAVE 95",
.background_top = {0x2d,0x1b,0x4e,0xff},
.background_mid = {0x23,0x16,0x45,0xff},
.background_bottom = {0x1a,0x10,0x3c,0xff},
.panel_fill = {0xff,0x10,0xf0,0xff},
.panel_text = {0xe0,0xf7,0xfa,0xff},
.panel_border = {0xff,0x10,0xf0,0xff},
.status_divider = {0x00,0xff,0xf9,0xff},
.status_text = {0xe0,0xf7,0xfa,0xff},
.status_top = {0x4a,0x2d,0x73,0xff},
.status_mid = {0x3a,0x22,0x62,0xff},
.status_bottom = {0x28,0x16,0x49,0xff},
.ribbon_top = {0x5a,0x1e,0x87,0xff},
.ribbon_mid = {0x4a,0x14,0x8c,0xff},
.ribbon_bottom = {0x31,0x10,0x61,0xff},
.ribbon_text = {0xe0,0xf7,0xfa,0xff},
.row_top = {0x57,0x27,0x8c,0xff},
.row_mid = {0x4b,0x1f,0x7e,0xff},
.row_bottom = {0x2f,0x12,0x57,0xff},
.row_active_top = {0x5e,0x1d,0x8e,0xff},
.row_active_mid = {0x4a,0x14,0x8c,0xff},
.row_active_bottom = {0x2d,0x0e,0x52,0xff},
.row_text = {0xe0,0xf7,0xfa,0xff},
.row_subtext = {0xc8,0xee,0xf1,0xff},
.row_active_text = {0x00,0xff,0xf9,0xff},
.row_active_subtext = {0x9c,0xff,0xfb,0xff},
.block_top = {0x8a,0x2b,0xbe,0xff},
.block_mid = {0x6a,0x1b,0x9a,0xff},
.block_bottom = {0x48,0x15,0x72,0xff},
.block_active_top = {0xff,0x4d,0xf4,0xff},
.block_active_mid = {0xff,0x10,0xf0,0xff},
.block_active_bottom = {0xb0,0x00,0xa5,0xff},
.block_text = {0xe0,0xf7,0xfa,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0xaa,0x4b,0xd6,0xff},
.block_active_border = {0xff,0x7a,0xf4,0xff},
.selection_edge = {0x00,0xff,0xf9,0xff},
.grid_line = {0x00,0xff,0xf9,0xaa},
.row_line_hi = {0x8f,0x59,0xb6,0xff},
.row_line_lo = {0x18,0x0a,0x37,0xff},
.footer_top = {0xec,0xe7,0xf6,0xff},
.footer_mid = {0xda,0xd1,0xea,0xff},
.footer_bottom = {0xc4,0xb8,0xdb,0xff},
.footer_text = {0x21,0x14,0x39,0xff},
.pill_light = {0xff,0xf2,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x70},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 8
},
{
.name = "TERMINAL GREEN",
.background_top = {0x0c,0x0c,0x0c,0xff},
.background_mid = {0x12,0x12,0x12,0xff},
.background_bottom = {0x1a,0x1a,0x1a,0xff},
.panel_fill = {0x0f,0x38,0x0f,0xff},
.panel_text = {0x33,0xff,0x00,0xff},
.panel_border = {0x33,0xff,0x00,0xff},
.status_divider = {0x1b,0x4d,0x1b,0xff},
.status_text = {0x33,0xff,0x00,0xff},
.status_top = {0x10,0x18,0x10,0xff},
.status_mid = {0x0d,0x14,0x0d,0xff},
.status_bottom = {0x0a,0x10,0x0a,0xff},
.ribbon_top = {0x12,0x2f,0x12,0xff},
.ribbon_mid = {0x10,0x28,0x10,0xff},
.ribbon_bottom = {0x0c,0x1f,0x0c,0xff},
.ribbon_text = {0x33,0xff,0x00,0xff},
.row_top = {0x15,0x2d,0x15,0xff},
.row_mid = {0x10,0x23,0x10,0xff},
.row_bottom = {0x0b,0x19,0x0b,0xff},
.row_active_top = {0x12,0x3c,0x12,0xff},
.row_active_mid = {0x0f,0x38,0x0f,0xff},
.row_active_bottom = {0x08,0x1a,0x08,0xff},
.row_text = {0x66,0xff,0x4a,0xff},
.row_subtext = {0x52,0xd8,0x3e,0xff},
.row_active_text = {0x9d,0xff,0x84,0xff},
.row_active_subtext = {0x7a,0xed,0x66,0xff},
.block_top = {0x2a,0x66,0x2a,0xff},
.block_mid = {0x1b,0x4d,0x1b,0xff},
.block_bottom = {0x0f,0x2f,0x0f,0xff},
.block_active_top = {0x45,0xff,0x24,0xff},
.block_active_mid = {0x33,0xff,0x00,0xff},
.block_active_bottom = {0x15,0x6e,0x15,0xff},
.block_text = {0x33,0xff,0x00,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0x4a,0x8a,0x4a,0xff},
.block_active_border = {0x6a,0xff,0x4a,0xff},
.selection_edge = {0x33,0xff,0x00,0xff},
.grid_line = {0x33,0xff,0x00,0xaa},
.row_line_hi = {0x27,0x55,0x27,0xff},
.row_line_lo = {0x04,0x0c,0x04,0xff},
.footer_top = {0x1b,0x1b,0x1b,0xff},
.footer_mid = {0x16,0x16,0x16,0xff},
.footer_bottom = {0x0f,0x0f,0x0f,0xff},
.footer_text = {0x33,0xff,0x00,0xff},
.pill_light = {0xdb,0xff,0xdb,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xbb,0xff,0xbb,0x55},
.scanline = {0x00,0x00,0x00,51},
.rounded_radius = 8
},
{
.name = "SOLARIS CDE",
.background_top = {0xc5,0xc9,0xd6,0xff},
.background_mid = {0xae,0xb2,0xc3,0xff},
.background_bottom = {0x9a,0x9e,0xb0,0xff},
.panel_fill = {0xae,0xb2,0xc3,0xff},
.panel_text = {0x00,0x00,0x00,0xff},
.panel_border = {0x8a,0x8f,0xa0,0xff},
.status_divider = {0x8a,0x8f,0xa0,0xff},
.status_text = {0x00,0x00,0x00,0xff},
.status_top = {0xb2,0x4d,0x7a,0xff},
.status_mid = {0x9a,0x3f,0x67,0xff},
.status_bottom = {0x82,0x34,0x56,0xff},
.ribbon_top = {0xb2,0x4d,0x7a,0xff},
.ribbon_mid = {0x9a,0x3f,0x67,0xff},
.ribbon_bottom = {0x82,0x34,0x56,0xff},
.ribbon_text = {0xff,0xff,0xff,0xff},
.row_top = {0xb8,0xbc,0xc8,0xff},
.row_mid = {0xae,0xb2,0xc3,0xff},
.row_bottom = {0x9a,0x9e,0xb0,0xff},
.row_active_top = {0xb2,0x4d,0x7a,0xff},
.row_active_mid = {0x9a,0x3f,0x67,0xff},
.row_active_bottom = {0x82,0x34,0x56,0xff},
.row_text = {0x00,0x00,0x00,0xff},
.row_subtext = {0x66,0x66,0x66,0xff},
.row_active_text = {0xff,0xff,0xff,0xff},
.row_active_subtext = {0xe0,0xe0,0xe0,0xff},
.block_top = {0xc8,0xcc,0xd6,0xff},
.block_mid = {0xbd,0xc1,0xcc,0xff},
.block_bottom = {0xb2,0xb6,0xc1,0xff},
.block_active_top = {0xb2,0x4d,0x7a,0xff},
.block_active_mid = {0x9a,0x3f,0x67,0xff},
.block_active_bottom = {0x82,0x34,0x56,0xff},
.block_text = {0x00,0x00,0x00,0xff},
.block_active_text = {0xff,0xff,0xff,0xff},
.block_border = {0x8a,0x8f,0xa0,0xff},
.block_active_border = {0xd0,0x6b,0x9a,0xff},
.selection_edge = {0xb2,0x4d,0x7a,0xff},
.grid_line = {0x8a,0x8f,0xa0,0xaa},
.row_line_hi = {0xc5,0xc9,0xd6,0xff},
.row_line_lo = {0x8a,0x8f,0xa0,0xff},
.footer_top = {0xc5,0xc9,0xd6,0xff},
.footer_mid = {0xae,0xb2,0xc3,0xff},
.footer_bottom = {0x9a,0x9e,0xb0,0xff},
.footer_text = {0x00,0x00,0x00,0xff},
.pill_light = {0xff,0xff,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x70},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 12
},
{
.name = "PREMIUM MOVIE",
.background_top = {0x2c,0x0b,0x0e,0xff},
.background_mid = {0x21,0x08,0x0b,0xff},
.background_bottom = {0x1a,0x05,0x08,0xff},
.panel_fill = {0xf4,0xe4,0xc1,0xff},
.panel_text = {0xff,0xf8,0xdc,0xff},
.panel_border = {0x6b,0x4a,0x3d,0xff},
.status_divider = {0x90,0x6a,0x57,0xff},
.status_text = {0x2a,0x10,0x10,0xff},
.status_top = {0xf8,0xf0,0xde,0xff},
.status_mid = {0xec,0xe0,0xc8,0xff},
.status_bottom = {0xd6,0xc4,0xa4,0xff},
.ribbon_top = {0x58,0x0c,0x13,0xff},
.ribbon_mid = {0x42,0x08,0x0d,0xff},
.ribbon_bottom = {0x2d,0x05,0x08,0xff},
.ribbon_text = {0xff,0xf8,0xdc,0xff},
.row_top = {0x52,0x10,0x18,0xff},
.row_mid = {0x39,0x09,0x0f,0xff},
.row_bottom = {0x20,0x04,0x07,0xff},
.row_active_top = {0xa1,0x17,0x17,0xff},
.row_active_mid = {0x8b,0x00,0x00,0xff},
.row_active_bottom = {0x4a,0x04,0x04,0xff},
.row_text = {0xff,0xf8,0xdc,0xff},
.row_subtext = {0xf0,0xe5,0xc6,0xff},
.row_active_text = {0xff,0xd7,0x00,0xff},
.row_active_subtext = {0xff,0xe9,0x8f,0xff},
.block_top = {0x62,0x13,0x13,0xff},
.block_mid = {0x4a,0x04,0x04,0xff},
.block_bottom = {0x2d,0x02,0x02,0xff},
.block_active_top = {0xf9,0xed,0xcd,0xff},
.block_active_mid = {0xf4,0xe4,0xc1,0xff},
.block_active_bottom = {0xb8,0xa2,0x74,0xff},
.block_text = {0xff,0xf8,0xdc,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0x8a,0x3a,0x3a,0xff},
.block_active_border = {0xfa,0xe8,0xc8,0xff},
.selection_edge = {0xff,0xd7,0x00,0xff},
.grid_line = {0xaa,0x72,0x72,0xaa},
.row_line_hi = {0x7d,0x3b,0x3b,0xff},
.row_line_lo = {0x10,0x02,0x03,0xff},
.footer_top = {0xf4,0xf0,0xea,0xff},
.footer_mid = {0xe8,0xdd,0xcd,0xff},
.footer_bottom = {0xce,0xbb,0xaa,0xff},
.footer_text = {0x2a,0x10,0x10,0xff},
.pill_light = {0xff,0xff,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x70},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 8
},
{
.name = "ARCTIC BLUE",
.background_top = {0xe0,0xf2,0xfe,0xff},
.background_mid = {0xcf,0xec,0xfd,0xff},
.background_bottom = {0xba,0xe6,0xfd,0xff},
.panel_fill = {0xf0,0xf9,0xff,0xff},
.panel_text = {0x0c,0x4a,0x6e,0xff},
.panel_border = {0x7d,0xb9,0xe0,0xff},
.status_divider = {0x86,0xc8,0xf0,0xff},
.status_text = {0x0c,0x4a,0x6e,0xff},
.status_top = {0xf7,0xfc,0xff,0xff},
.status_mid = {0xe8,0xf5,0xfd,0xff},
.status_bottom = {0xd7,0xec,0xfa,0xff},
.ribbon_top = {0x64,0xa9,0xcf,0xff},
.ribbon_mid = {0x48,0x93,0xc0,0xff},
.ribbon_bottom = {0x03,0x69,0xa1,0xff},
.ribbon_text = {0xf0,0xf9,0xff,0xff},
.row_top = {0xd9,0xf0,0xfe,0xff},
.row_mid = {0xc8,0xe8,0xfd,0xff},
.row_bottom = {0xb3,0xdd,0xf8,0xff},
.row_active_top = {0x2a,0x86,0xba,0xff},
.row_active_mid = {0x03,0x69,0xa1,0xff},
.row_active_bottom = {0x04,0x4d,0x7a,0xff},
.row_text = {0x0c,0x4a,0x6e,0xff},
.row_subtext = {0x2c,0x6a,0x8b,0xff},
.row_active_text = {0xf0,0xf9,0xff,0xff},
.row_active_subtext = {0xd8,0xf0,0xff,0xff},
.block_top = {0xec,0xf8,0xff,0xff},
.block_mid = {0xe0,0xf2,0xfe,0xff},
.block_bottom = {0xb8,0xe5,0xfb,0xff},
.block_active_top = {0x9b,0xe4,0xfb,0xff},
.block_active_mid = {0x7d,0xd3,0xfc,0xff},
.block_active_bottom = {0x4a,0xae,0xe0,0xff},
.block_text = {0x0c,0x4a,0x6e,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0xfc,0xff,0xff,0xff},
.block_active_border = {0xab,0xe4,0xfb,0xff},
.selection_edge = {0xff,0xff,0xff,0xff},
.grid_line = {0x7d,0xd3,0xfc,0xaa},
.row_line_hi = {0xf0,0xf9,0xff,0xff},
.row_line_lo = {0x7d,0xd3,0xfc,0xff},
.footer_top = {0xf8,0xfb,0xfe,0xff},
.footer_mid = {0xec,0xf6,0xfc,0xff},
.footer_bottom = {0xd6,0xed,0xf8,0xff},
.footer_text = {0x0c,0x4a,0x6e,0xff},
.pill_light = {0xff,0xff,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x28},
.gloss = {0xff,0xff,0xff,0x80},
.scanline = {0x00,0x00,0x00,18},
.rounded_radius = 8
},
{
.name = "WOOD PANELING",
.background_top = {0x8b,0x45,0x13,0xff},
.background_mid = {0x75,0x4a,0x20,0xff},
.background_bottom = {0x65,0x43,0x21,0xff},
.panel_fill = {0xda,0x8e,0x00,0xff},
.panel_text = {0xff,0xf8,0xdc,0xff},
.panel_border = {0x5a,0x34,0x18,0xff},
.status_divider = {0x7b,0x59,0x2f,0xff},
.status_text = {0x4a,0x2a,0x12,0xff},
.status_top = {0xe9,0xd7,0xb6,0xff},
.status_mid = {0xd9,0xc2,0x9b,0xff},
.status_bottom = {0xc5,0xaa,0x7f,0xff},
.ribbon_top = {0x8a,0x6d,0x32,0xff},
.ribbon_mid = {0x76,0x58,0x2a,0xff},
.ribbon_bottom = {0x4a,0x37,0x28,0xff},
.ribbon_text = {0xff,0xf8,0xdc,0xff},
.row_top = {0x7a,0x57,0x35,0xff},
.row_mid = {0x6b,0x44,0x23,0xff},
.row_bottom = {0x58,0x38,0x1b,0xff},
.row_active_top = {0x5a,0x4a,0x16,0xff},
.row_active_mid = {0x4a,0x37,0x28,0xff},
.row_active_bottom = {0x2d,0x20,0x17,0xff},
.row_text = {0xff,0xf8,0xdc,0xff},
.row_subtext = {0xf0,0xe3,0xc0,0xff},
.row_active_text = {0xda,0x8e,0x00,0xff},
.row_active_subtext = {0xf1,0xc8,0x79,0xff},
.block_top = {0x90,0x61,0x34,0xff},
.block_mid = {0x6b,0x44,0x23,0xff},
.block_bottom = {0x4f,0x32,0x18,0xff},
.block_active_top = {0xe7,0xc8,0x93,0xff},
.block_active_mid = {0xde,0xb8,0x87,0xff},
.block_active_bottom = {0xa4,0x74,0x46,0xff},
.block_text = {0xff,0xf8,0xdc,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0xa0,0x72,0x46,0xff},
.block_active_border = {0xf0,0xd8,0xa8,0xff},
.selection_edge = {0xda,0x8e,0x00,0xff},
.grid_line = {0xc2,0x98,0x6b,0xaa},
.row_line_hi = {0xc6,0xa1,0x5d,0xff},
.row_line_lo = {0x42,0x26,0x10,0xff},
.footer_top = {0xf1,0xe6,0xd3,0xff},
.footer_mid = {0xe8,0xd9,0xbd,0xff},
.footer_bottom = {0xd8,0xc1,0x97,0xff},
.footer_text = {0x4a,0x2a,0x12,0xff},
.pill_light = {0xff,0xfc,0xf0,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x60},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 8
},
{
.name = "CYBERPUNK NEON",
.background_top = {0x0d,0x02,0x21,0xff},
.background_mid = {0x1a,0x0a,0x34,0xff},
.background_bottom = {0x26,0x14,0x47,0xff},
.panel_fill = {0xff,0xf0,0x1f,0xff},
.panel_text = {0xff,0xff,0xff,0xff},
.panel_border = {0x00,0xf6,0xed,0xff},
.status_divider = {0x00,0xf6,0xed,0xff},
.status_text = {0xff,0xff,0xff,0xff},
.status_top = {0x1e,0x10,0x36,0xff},
.status_mid = {0x18,0x0c,0x2f,0xff},
.status_bottom = {0x10,0x07,0x21,0xff},
.ribbon_top = {0x4d,0x21,0x7f,0xff},
.ribbon_mid = {0x35,0x13,0x6a,0xff},
.ribbon_bottom = {0x1d,0x08,0x42,0xff},
.ribbon_text = {0xff,0xff,0xff,0xff},
.row_top = {0x30,0x10,0x56,0xff},
.row_mid = {0x25,0x0d,0x49,0xff},
.row_bottom = {0x16,0x08,0x2f,0xff},
.row_active_top = {0xff,0x55,0x7f,0xff},
.row_active_mid = {0xff,0x38,0x64,0xff},
.row_active_bottom = {0xa0,0x11,0x3b,0xff},
.row_text = {0xff,0xff,0xff,0xff},
.row_subtext = {0xd8,0xf6,0xff,0xff},
.row_active_text = {0xff,0xf0,0x1f,0xff},
.row_active_subtext = {0xff,0xf8,0x9d,0xff},
.block_top = {0x5b,0x20,0xce,0xff},
.block_mid = {0x3a,0x0c,0xa3,0xff},
.block_bottom = {0x1f,0x06,0x5b,0xff},
.block_active_top = {0x00,0xff,0xf0,0xff},
.block_active_mid = {0x00,0xf6,0xed,0xff},
.block_active_bottom = {0x09,0x7b,0x95,0xff},
.block_text = {0xff,0xff,0xff,0xff},
.block_active_text = {0xf5,0xf5,0xf0,0xff},
.block_border = {0x7b,0x40,0xde,0xff},
.block_active_border = {0x4a,0xff,0xf0,0xff},
.selection_edge = {0xff,0xf0,0x1f,0xff},
.grid_line = {0x00,0xf6,0xed,0xaa},
.row_line_hi = {0x67,0x2c,0xb2,0xff},
.row_line_lo = {0x0a,0x03,0x18,0xff},
.footer_top = {0xf3,0xf0,0xf9,0xff},
.footer_mid = {0xe7,0xe2,0xf1,0xff},
.footer_bottom = {0xc6,0xc0,0xd6,0xff},
.footer_text = {0x1a,0x10,0x29,0xff},
.pill_light = {0xff,0xff,0xff,0xff},
.pill_shadow = {0x00,0x00,0x00,0x40},
.gloss = {0xff,0xff,0xff,0x70},
.scanline = {0x00,0x00,0x00,26},
.rounded_radius = 8
}
};
#endif