summaryrefslogtreecommitdiff
path: root/include/u8c/col.h
blob: 90966081e0c04a55aba1cab902866a3dbce71ee4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
	Copyright 2021 Gabriel Jensen

	This file is part of u8c.

	u8c is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

	u8c is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

	See the	GNU Affero General Public License for more details.

	You should have received a copy of the GNU Affero General Public License along with u8c.

	If not, see <https://www.gnu.org/licenses/>.
*/
/* Colour */
# if !defined(u8c_sym_col)
# define u8c_sym_col
# include <stdint.h>
# define u8c_col_azure      (UINT32_C(0x3DA9E1))
# define u8c_col_ash        (UINT32_C(0xD2D2CC))
# define u8c_col_black      (UINT32_C(0x444747))
# define u8c_col_blue       (UINT32_C(0x3D3DE1))
# define u8c_col_chartreuse (UINT32_C(0xA9E13D))
# define u8c_col_cyan       (UINT32_C(0x3DE1E1))
# define u8c_col_green      (UINT32_C(0x3ED13D))
# define u8c_col_magenta    (UINT32_C(0xE13DE1))
# define u8c_col_mint       (UINT32_C(0x3DE1A9))
# define u8c_col_orange     (UINT32_C(0xE1A93D))
# define u8c_col_red        (UINT32_C(0xE13D3D))
# define u8c_col_rose       (UINT32_C(0xE13DA9))
# define u8c_col_silver     (UINT32_C(0x9CA1A1))
# define u8c_col_violet     (UINT32_C(0xA93dE1))
# define u8c_col_white      (UINT32_C(0xF8F8F1))
# define u8c_col_yellow     (UINT32_C(0xE1E13D))
# endif