mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
11 lines
324 B
C++
11 lines
324 B
C++
|
|
// Local includes
|
|
#include <utils/RgbColor.h>
|
|
|
|
RgbColor RgbColor::BLACK = { 0, 0, 0 };
|
|
RgbColor RgbColor::RED = { 255, 0, 0 };
|
|
RgbColor RgbColor::GREEN = { 0, 255, 0 };
|
|
RgbColor RgbColor::BLUE = { 0, 0, 255 };
|
|
RgbColor RgbColor::YELLOW= { 255, 255, 0 };
|
|
RgbColor RgbColor::WHITE = { 255, 255, 255 };
|