TermOx
include
termox
painter
palette
stormy6.hpp
1
#ifndef TERMOX_PAINTER_PALETTE_STORMY6_HPP
2
#define TERMOX_PAINTER_PALETTE_STORMY6_HPP
3
#include <termox/painter/color.hpp>
4
5
namespace
ox::stormy6 {
6
7
inline
constexpr
auto
Black = Color::Background;
8
inline
constexpr
auto
Green = Color{2};
9
inline
constexpr
auto
Teal = Color{7};
10
inline
constexpr
auto
Red = Color{9};
11
inline
constexpr
auto
Orange = Color{13};
12
inline
constexpr
auto
White = Color::Foreground;
13
15
16
inline
auto
const
palette = Palette{
17
/* clang-format off */
18
{Black, RGB{0x242828}},
19
{Green, RGB{0x7f9860}},
20
{Teal, RGB{0x3a5043}},
21
{Red, RGB{0xa95a3f}},
22
{Orange, RGB{0xedbb70}},
23
{White, RGB{0xf8eebf}},
24
/* clang-format on */
25
};
26
27
}
// namespace ox::stormy6
28
#endif
// TERMOX_PAINTER_PALETTE_STORMY6_HPP
Generated by
1.9.1