summaryrefslogtreecommitdiffstats
path: root/src/tk/style.h
blob: a8ff76f1a5991b13fb40745b823e360bb4ec5a8d (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
45
46
47
48
49
50
51
52
53
54
/*
 * 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_FBDR_R 0x00  /* Form border color */
#define MFTK_COLOR_FBDR_G 0x00
#define MFTK_COLOR_FBDR_B 0x00
#define MFTK_COLOR_FBDR_A 0xFF
#define MFTK_COLOR_BACK_R 0xAF  /* Widget fill color */
#define MFTK_COLOR_BACK_G 0xAF
#define MFTK_COLOR_BACK_B 0xAF
#define MFTK_COLOR_BACK_A 0xFF
#define MFTK_COLOR_BDRN_R 0x00  /* Widget normal border color */
#define MFTK_COLOR_BDRN_G 0x00
#define MFTK_COLOR_BDRN_B 0x00
#define MFTK_COLOR_BDRN_A 0xFF
#define MFTK_COLOR_BDRF_R 0x00  /* Widget focus border color */
#define MFTK_COLOR_BDRF_G 0x00
#define MFTK_COLOR_BDRF_B 0xAF
#define MFTK_COLOR_BDRF_A 0xFF
#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_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

#define MFTK_CURSOR_BLINK_MS 500  /* Milliseconds between cursor blinks */

#endif  /* MFTK_STYLE_H_ */