aboutsummaryrefslogtreecommitdiff
path: root/src/color.h
blob: 2c354657411516bb9cf774f4dfdcd0d450bc1774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#pragma once

#include <tuple>
#include <cstdint>

namespace imgen {

using color = std::tuple<std::uint8_t, std::uint8_t, std::uint8_t>;

color red();
color lime();
color blue();
color yellow();
color cyan();
color magenta();
color silver();
color maroon();
color olive();
color green();
color purple();
color teal();
color navy();

}