1 #ifndef TERMOX_PAINTER_PALETTE_GAMEBOY_POCKET_HPP
2 #define TERMOX_PAINTER_PALETTE_GAMEBOY_POCKET_HPP
3 #include <termox/painter/color.hpp>
5 namespace ox::gameboy_pocket {
7 inline constexpr
auto Black = Color::Background;
8 inline constexpr
auto Dark_gray = Color{8};
9 inline constexpr
auto Light_gray = Color{7};
10 inline constexpr
auto White = Color::Foreground;
13 inline auto const palette = Palette{
15 {Black, RGB{0x000000}},
16 {Dark_gray, RGB{0x545454}},
17 {Light_gray, RGB{0xa9a9a9}},
18 {White, RGB{0xffffff}},