17 lines
449 B
C++
17 lines
449 B
C++
#include "canvas/BackGroundColors.hpp"
|
|
|
|
Color BackGroundColors::backGroundColor;
|
|
Color BackGroundColors::starColor;
|
|
Color BackGroundColors::moonColor;
|
|
Color BackGroundColors::backMountenColor;
|
|
Color BackGroundColors::frontMountenColor;
|
|
|
|
void BackGroundColors::setColor()
|
|
{
|
|
backGroundColor = {21, 34, 56, 255};
|
|
starColor = WHITE;
|
|
moonColor = {240, 240, 190, 255};
|
|
backMountenColor = {28, 28, 38, 255};
|
|
frontMountenColor = {0, 0, 0, 255};
|
|
}
|