diff -r 2bdc3ac5e77c -r 55a55a9ec2c2 src/colors.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/colors.h Sun Sep 22 11:51:41 2019 +0300 @@ -0,0 +1,19 @@ +#pragma once +#include "main.h" + +struct Color +{ + qint32 index; +}; + +namespace colors +{ + static constexpr Color black {0}; + static constexpr Color blue {1}; + static constexpr Color green {2}; + static constexpr Color red {4}; + static constexpr Color yellow {14}; + static constexpr Color white {15}; + static constexpr Color main {16}; + static constexpr Color edge {24}; +}