PER Firmware
Loading...
Searching...
No Matches
colors.h
Go to the documentation of this file.
1#ifndef COLORS_H
2#define COLORS_H
3
11#include <stdint.h>
12
13// PER26 Color Pallette in 565 format
14static constexpr uint16_t WHITE = 65535; // #FFFFFF
15static constexpr uint16_t DARK_GRAY = 33808; // #838383
16static constexpr uint16_t LIGHT_GRAY = 57051; // #D9D9D9
17static constexpr uint16_t BLUE = 991; // #007AFF
18static constexpr uint16_t MUTED_BLUE = 2278; // #0B1D31
19static constexpr uint16_t GREEN = 1632; // #00CC00
20static constexpr uint16_t MUTED_GREEN = 2369; // #0B2A0B
21static constexpr uint16_t BLACK = 0; // #000000
22static constexpr uint16_t RED = 63878; // #FF3336
23static constexpr uint16_t MUTED_RED = 12418; // #311313
24static constexpr uint16_t YELLOW = 65252; // #FFDE21
25static constexpr uint16_t MUTED_YELLOW = 12642; // #312C10
26
27#endif // COLORS_H