#ifndef LIBRARY_COLOR_H #define LIBRARY_COLOR_H /** * color values represented as rgb values. * @author Johannes Theiner * @since 0.1.0 */ class Color { private: unsigned char red; unsigned char green; unsigned char blue; public: Color(unsigned char red, unsigned char green, unsigned char blue); }; const Color black = Color(0, 0, 0); const Color white = Color(255, 255, 255); #endif