CanvasLib
Loading...
Searching...
No Matches
Colors.hpp
1#ifndef CANV_COLORS_HPP
2#define CANV_COLORS_HPP
3#include "CanvasLib/Color.hpp"
4
5namespace canv {
6
7class Colors {
8public:
9 static const Color white;
10 static const Color black;
11 static const Color grey;
12 static const Color red;
13 static const Color green;
14 static const Color blue;
15 static const Color lightBlue;
16};
17
18} // namespace canv
19
20#endif // CANV_COLORS_HPP
Utility Color class operating uint8(0..255) values.
Definition Color.hpp:15
Definition Colors.hpp:7
Definition CanvasLib.hpp:44