From 64880ba1019f8c81470d697143b7bf48143b2fc8 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Sat, 14 May 2016 23:06:20 +0200 Subject: Separate into multiple compilation units, add color functions * fix cartesian coordinate determination --- src/color.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/color.h (limited to 'src/color.h') diff --git a/src/color.h b/src/color.h new file mode 100644 index 0000000..2c35465 --- /dev/null +++ b/src/color.h @@ -0,0 +1,24 @@ +#pragma once + +#include +#include + +namespace imgen { + +using color = std::tuple; + +color red(); +color lime(); +color blue(); +color yellow(); +color cyan(); +color magenta(); +color silver(); +color maroon(); +color olive(); +color green(); +color purple(); +color teal(); +color navy(); + +} -- cgit v1.2.3