TermOx
dawn_bringer32.hpp
1 #ifndef TERMOX_PAINTER_PALETTE_DAWN_BRINGER32_HPP
2 #define TERMOX_PAINTER_PALETTE_DAWN_BRINGER32_HPP
3 #include <termox/painter/color.hpp>
4 
5 namespace ox::dawn_bringer32 {
6 
7 inline constexpr auto Black = Color::Background;
8 inline constexpr auto Well_read = Color{1};
9 inline constexpr auto Ocean_green = Color{2};
10 inline constexpr auto Golden_fizz = Color{3};
11 inline constexpr auto Royal_blue = Color{4};
12 inline constexpr auto Hopbush = Color{5};
13 inline constexpr auto Atlantis = Color{6};
14 inline constexpr auto Gull_gray = Color{7};
15 inline constexpr auto Chicago = Color{8};
16 inline constexpr auto Roman = Color{9};
17 inline constexpr auto Di_serria = Color{10};
18 inline constexpr auto Buccaneer = Color{11};
19 inline constexpr auto Steel_gray = Color{12};
20 inline constexpr auto Hot_cinnamon = Color{13};
21 inline constexpr auto Corduroy = Color{14};
22 inline constexpr auto White = Color::Foreground;
23 inline constexpr auto Calypso = Color{16};
24 inline constexpr auto Potters_clay = Color{17};
25 inline constexpr auto Malibu = Color{18};
26 inline constexpr auto Turquoise_blue = Color{19};
27 inline constexpr auto Hawkes_blue = Color{20};
28 inline constexpr auto Chalky = Color{21};
29 inline constexpr auto East_bay = Color{22};
30 inline constexpr auto Mobster = Color{23};
31 inline constexpr auto Cape_cod = Color{24};
32 inline constexpr auto Livid_brown = Color{25};
33 inline constexpr auto Affair = Color{26};
34 inline constexpr auto Chalet_green = Color{27};
35 inline constexpr auto Conifer = Color{28};
36 inline constexpr auto Woodland = Color{29};
37 inline constexpr auto Sycamore = Color{30};
38 inline constexpr auto Pesto = Color{31};
39 
41 
42 inline auto const palette = Palette{
43  /* clang-format off */
44  {Black, RGB{0x000001}},
45  {Steel_gray, RGB{0x222034}},
46  {Livid_brown, RGB{0x45283c}},
47  {Buccaneer, RGB{0x663931}},
48  {Potters_clay, RGB{0x8f563b}},
49  {Hot_cinnamon, RGB{0xdf7126}},
50  {Di_serria, RGB{0xd9a066}},
51  {Chalky, RGB{0xeec39a}},
52  {Golden_fizz, RGB{0xfbf236}},
53  {Conifer, RGB{0x99e550}},
54  {Atlantis, RGB{0x6abe30}},
55  {Ocean_green, RGB{0x37946e}},
56  {Chalet_green, RGB{0x4b692f}},
57  {Woodland, RGB{0x524b24}},
58  {Cape_cod, RGB{0x323c39}},
59  {East_bay, RGB{0x3f3f74}},
60  {Calypso, RGB{0x306082}},
61  {Royal_blue, RGB{0x5b6ee1}},
62  {Malibu, RGB{0x639bff}},
63  {Turquoise_blue, RGB{0x5fcde4}},
64  {Hawkes_blue, RGB{0xcbdbfc}},
65  {White, RGB{0xffffff}},
66  {Gull_gray, RGB{0x9badb7}},
67  {Mobster, RGB{0x847e87}},
68  {Corduroy, RGB{0x696a6a}},
69  {Chicago, RGB{0x595652}},
70  {Affair, RGB{0x76428a}},
71  {Well_read, RGB{0xac3232}},
72  {Roman, RGB{0xd95763}},
73  {Hopbush, RGB{0xd77bba}},
74  {Sycamore, RGB{0x8f974a}},
75  {Pesto, RGB{0x8a6f30}},
76  /* clang-format on */
77 };
78 
79 } // namespace ox::dawn_bringer32
80 #endif // TERMOX_PAINTER_PALETTE_DAWN_BRINGER32_HPP