19 lines
369 B
C
19 lines
369 B
C
/**
|
|
* Copyright (c) 2026 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "display/color.h"
|
|
|
|
#define PALETTE_COLOR_COUNT 0xFF
|
|
#define PALETTE_COUNT 6
|
|
|
|
typedef struct {
|
|
color_t colors[PALETTE_COLOR_COUNT];
|
|
uint8_t count;
|
|
} palette_t;
|
|
|
|
extern palette_t PALETTES[PALETTE_COUNT]; |