15 lines
528 B
C++
15 lines
528 B
C++
#include "DisplayMatrix_common.h"
|
|
|
|
//@formatter:off
|
|
const Color Transparent { 0, 0, 0, 0};
|
|
const Color Black { 0, 0, 0, 255};
|
|
const Color Red {255, 0, 0, 255};
|
|
const Color Yellow {255, 255, 0, 255};
|
|
const Color Green { 0, 255, 0, 255};
|
|
const Color Cyan { 0, 255, 255, 255};
|
|
const Color Blue { 0, 0, 255, 255};
|
|
const Color Magenta {255, 0, 255, 255};
|
|
const Color Gray {127, 127, 127, 255};
|
|
const Color White {255, 255, 255, 255};
|
|
//@formatter:on
|