unlogic
Loading...
Searching...
No Matches
Color.cpp
Go to the documentation of this file.
1//
2// Created by Nathan on 11/12/2024.
3//
4
5#include "Color.h"
6
7using namespace unlogic;
8
9Color Color::White = {1.0, 1.0, 1.0};
10Color Color::Black = {0.0, 0.0, 0.0};
11Color Color::Red = {1.0, 0.0, 0.0};
12Color Color::Orange = {1.0, 0.5, 0.0};
13Color Color::Yellow = {1.0, 1.0, 0.0};
14Color Color::Green = {0.0, 1.0, 0.0};
15Color Color::Blue = {0.0, 0.0, 1.0};
16Color Color::Cyan = {0.0, 1.0, 1.0};
17Color Color::Purple = {0.5, 0.0, 1.0};
18Color Color::Pink = {1.0, 0.0, 0.5};
static Color Pink
Definition Color.h:22
static Color Cyan
Definition Color.h:20
static Color Red
Definition Color.h:15
static Color Green
Definition Color.h:18
static Color Blue
Definition Color.h:19
static Color White
Definition Color.h:13
static Color Orange
Definition Color.h:16
static Color Black
Definition Color.h:14
static Color Purple
Definition Color.h:21
static Color Yellow
Definition Color.h:17