src/colors.h

Sun, 03 Nov 2019 12:56:42 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Sun, 03 Nov 2019 12:56:42 +0200
changeset 9
8b9780700b5e
parent 3
55a55a9ec2c2
child 21
0133e565e072
permissions
-rw-r--r--

added saving of splitter state and recent files

#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};
}

mercurial