// 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 };