Files
hyperion.ng/libsrc/utils/ColorBgr.cpp
2020-08-08 13:22:37 +02:00

11 lines
366 B
C++

// Local includes
#include <utils/ColorBgr.h>
const ColorBgr ColorBgr::BLACK = { 0, 0, 0 };
const ColorBgr ColorBgr::RED = { 0, 0, 255 };
const ColorBgr ColorBgr::GREEN = { 0, 255, 0 };
const ColorBgr ColorBgr::BLUE = { 255, 0, 0 };
const ColorBgr ColorBgr::YELLOW = { 0, 255, 255 };
const ColorBgr ColorBgr::WHITE = { 255, 255, 255 };