TermOx
include
termox
painter
palette
en4.hpp
1
#ifndef TERMOX_PAINTER_PALETTE_EN4_HPP
2
#define TERMOX_PAINTER_PALETTE_EN4_HPP
3
#include <termox/painter/color.hpp>
4
5
namespace
ox::en4 {
6
7
inline
constexpr
auto
Blue = Color::Background;
8
inline
constexpr
auto
Peach = Color{5};
9
inline
constexpr
auto
Green = Color{2};
10
inline
constexpr
auto
White = Color::Foreground;
11
13
14
inline
auto
const
palette = Palette{
15
/* clang-format off */
16
{Blue, RGB{0x20283d}},
17
{Peach, RGB{0xe5b083}},
18
{Green, RGB{0x426e5d}},
19
{White, RGB{0xfbf7f3}},
20
/* clang-format on */
21
};
22
23
}
// namespace ox::en4
24
#endif
// TERMOX_PAINTER_PALETTE_EN4_HPP
Generated by
1.9.1