Numworks Epsilon  1.4.1
Graphing Calculator Operating System
palette.h
Go to the documentation of this file.
1 #ifndef ESCHER_PALETTE_H
2 #define ESCHER_PALETTE_H
3 
4 #include <kandinsky/color.h>
5 
6 class Palette {
7 public:
8  constexpr static KDColor YellowDark = KDColor::RGB24(0xffb734);
9  constexpr static KDColor YellowLight = KDColor::RGB24(0xffcc7b);
10  constexpr static KDColor PurpleBright = KDColor::RGB24(0x656975);
11  constexpr static KDColor PurpleDark = KDColor::RGB24(0x414147);
12  constexpr static KDColor GreyWhite = KDColor::RGB24(0xf5f5f5);
13  constexpr static KDColor GreyBright = KDColor::RGB24(0xececec);
14  constexpr static KDColor GreyMiddle = KDColor::RGB24(0xd9d9d9);
15  constexpr static KDColor GreyDark = KDColor::RGB24(0xa7a7a7);
16  constexpr static KDColor GreyVeryDark = KDColor::RGB24(0x8c8c8c);
17  constexpr static KDColor Select = KDColor::RGB24(0xd4d7e0);
18  constexpr static KDColor SelectDark = KDColor::RGB24(0xb0b8d8);
19  constexpr static KDColor WallScreen = KDColor::RGB24(0xf7f9fa);
20  constexpr static KDColor WallScreenDark = KDColor::RGB24(0xe0e6ed);
21  constexpr static KDColor SubTab = KDColor::RGB24(0xb8bbc5);
22  constexpr static KDColor LowBattery = KDColor::RGB24(0xf30211);
23  constexpr static KDColor Red = KDColor::RGB24(0xff000c);
24  constexpr static KDColor Magenta = KDColor::RGB24(0xff0588);
25  constexpr static KDColor Turquoise = KDColor::RGB24(0x60c1ec);
26  constexpr static KDColor Pink = KDColor::RGB24(0xffabb6);
27  constexpr static KDColor Blue = KDColor::RGB24(0x5075f2);
28  constexpr static KDColor Orange = KDColor::RGB24(0xfe871f);
29  constexpr static KDColor Green = KDColor::RGB24(0x76d435);
30 };
31 
32 #endif
static constexpr KDColor YellowDark
Definition: palette.h:8
static constexpr KDColor SelectDark
Definition: palette.h:18
static constexpr KDColor Blue
Definition: palette.h:27
static constexpr KDColor PurpleBright
Definition: palette.h:10
static constexpr KDColor GreyDark
Definition: palette.h:15
static constexpr KDColor Pink
Definition: palette.h:26
static constexpr KDColor SubTab
Definition: palette.h:21
static constexpr KDColor Magenta
Definition: palette.h:24
static constexpr KDColor Select
Definition: palette.h:17
static constexpr KDColor PurpleDark
Definition: palette.h:11
static constexpr KDColor LowBattery
Definition: palette.h:22
static constexpr KDColor YellowLight
Definition: palette.h:9
static constexpr KDColor GreyMiddle
Definition: palette.h:14
static constexpr KDColor Green
Definition: palette.h:29
static constexpr KDColor WallScreen
Definition: palette.h:19
Definition: color.h:6
static constexpr KDColor GreyVeryDark
Definition: palette.h:16
static constexpr KDColor Red
Definition: palette.h:23
static constexpr KDColor GreyBright
Definition: palette.h:13
static constexpr KDColor RGB24(uint32_t rgb)
Definition: color.h:13
static constexpr KDColor GreyWhite
Definition: palette.h:12
static constexpr KDColor Turquoise
Definition: palette.h:25
static constexpr KDColor Orange
Definition: palette.h:28
static constexpr KDColor WallScreenDark
Definition: palette.h:20
Definition: palette.h:6