mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Refactor color utils (#955)
Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
|
||||
// Local includes
|
||||
#include <utils/ColorRgbw.h>
|
||||
|
||||
ColorRgbw ColorRgbw::BLACK = { 0, 0, 0, 0 };
|
||||
ColorRgbw ColorRgbw::RED = { 255, 0, 0, 0 };
|
||||
ColorRgbw ColorRgbw::GREEN = { 0, 255, 0, 0 };
|
||||
ColorRgbw ColorRgbw::BLUE = { 0, 0, 255, 0 };
|
||||
ColorRgbw ColorRgbw::YELLOW= { 255, 255, 0, 0 };
|
||||
ColorRgbw ColorRgbw::WHITE = { 0, 0, 0, 255 };
|
||||
const ColorRgbw ColorRgbw::BLACK = { 0, 0, 0, 0 };
|
||||
const ColorRgbw ColorRgbw::RED = { 255, 0, 0, 0 };
|
||||
const ColorRgbw ColorRgbw::GREEN = { 0, 255, 0, 0 };
|
||||
const ColorRgbw ColorRgbw::BLUE = { 0, 0, 255, 0 };
|
||||
const ColorRgbw ColorRgbw::YELLOW = { 255, 255, 0, 0 };
|
||||
const ColorRgbw ColorRgbw::WHITE = { 0, 0, 0, 255 };
|
||||
|
Reference in New Issue
Block a user