blob: 16b4e256a761ace8f143e65a6b0d47f890a8d3e7 (
plain)
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
37
38
39
40
41
42
43
44
|
/*
* Copyright (C) 2021 P. J. McDermott
*
* This file is part of Maze Fight
*
* Maze Fight is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Maze Fight 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Maze Fight. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MFTK_STYLE_H_
#define MFTK_STYLE_H_
#define MFTK_COLOR_FORM_R 0xDF /* Form background color */
#define MFTK_COLOR_FORM_G 0xDF
#define MFTK_COLOR_FORM_B 0xDF
#define MFTK_COLOR_FORM_A 0xDF
#define MFTK_COLOR_FORE_R 0x00 /* Text color */
#define MFTK_COLOR_FORE_G 0x00
#define MFTK_COLOR_FORE_B 0x00
#define MFTK_COLOR_FORE_A 0xFF
#define MFTK_COLOR_BUTN_R 0xAF /* Button fill color */
#define MFTK_COLOR_BUTN_G 0xAF
#define MFTK_COLOR_BUTN_B 0xAF
#define MFTK_COLOR_BUTN_A 0xFF
#define MFTK_COLOR_CHKB_R 0xAF /* Radio button and check box button fill color */
#define MFTK_COLOR_CHKB_G 0xAF
#define MFTK_COLOR_CHKB_B 0xAF
#define MFTK_COLOR_CHKB_A 0xFF
#define MFTK_COLOR_CHKM_R 0x00 /* Radio button and check box mark fill color */
#define MFTK_COLOR_CHKM_G 0x00
#define MFTK_COLOR_CHKM_B 0x00
#define MFTK_COLOR_CHKM_A 0xFF
#endif /* MFTK_STYLE_H_ */
|