TermOx
gameboy_pocket.hpp
1 #ifndef TERMOX_PAINTER_PALETTE_GAMEBOY_POCKET_HPP
2 #define TERMOX_PAINTER_PALETTE_GAMEBOY_POCKET_HPP
3 #include <termox/painter/color.hpp>
4 
5 namespace ox::gameboy_pocket {
6 
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;
11 
13 inline auto const palette = Palette{
14  /* clang-format off */
15  {Black, RGB{0x000000}},
16  {Dark_gray, RGB{0x545454}},
17  {Light_gray, RGB{0xa9a9a9}},
18  {White, RGB{0xffffff}},
19  /* clang-format on */
20 };
21 
22 } // namespace ox::gameboy_pocket
23 #endif // TERMOX_PAINTER_PALETTE_GAMEBOY_POCKET_HPP