blob: 49a8bbdd79687f400fd31d9baf24bd4434f81698 [file] [log] [blame]
adamdunkels4b0459d2003-04-05 12:35:32 +00001/*
2 * Copyright (c) 2002, Adam Dunkels.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following
12 * disclaimer in the documentation and/or other materials provided
13 * with the distribution.
14 * 3. All advertising materials mentioning features or use of this
15 * software must display the following acknowledgement:
16 * This product includes software developed by Adam Dunkels.
17 * 4. The name of the author may not be used to endorse or promote
18 * products derived from this software without specific prior
19 * written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
22 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
25 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
27 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
29 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * This file is part of the "ctk" console GUI toolkit for cc65
34 *
oliverschmidtc34a7482004-08-12 22:07:20 +000035 * $Id: ctk-conio-conf.h,v 1.2 2004/08/12 22:07:20 oliverschmidt Exp $
adamdunkels4b0459d2003-04-05 12:35:32 +000036 *
37 */
38
39#ifndef __CTK_CONIO_CONF_H__
40#define __CTK_CONIO_CONF_H__
41
42#if 0
43/* Light gray inverted color scheme: */
44#define BORDERCOLOR COLOR_WHITE
45#define SCREENCOLOR COLOR_WHITE
oliverschmidtc34a7482004-08-12 22:07:20 +000046#define BACKGROUNDCOLOR COLOR_WHITE
adamdunkels4b0459d2003-04-05 12:35:32 +000047
48#define WINDOWCOLOR_FOCUS COLOR_BLACK
49#define WINDOWCOLOR COLOR_GRAY2
50
51#define DIALOGCOLOR COLOR_RED
52
53#define WIDGETCOLOR_HLINK COLOR_BLUE
54#define WIDGETCOLOR_FWIN COLOR_BLACK
55#define WIDGETCOLOR COLOR_GRAY1
56#define WIDGETCOLOR_DIALOG COLOR_RED
57#define WIDGETCOLOR_FOCUS COLOR_BLACK
58
59#define MENUCOLOR COLOR_BLACK
60#define OPENMENUCOLOR COLOR_BLACK
61#define ACTIVEMENUITEMCOLOR COLOR_BLACK
62#endif /* 0 */
63
64#if 0
65/* Blue color scheme: */
66#define BORDERCOLOR COLOR_LIGHTBLUE
67#define SCREENCOLOR COLOR_BLUE
oliverschmidtc34a7482004-08-12 22:07:20 +000068#define BACKGROUNDCOLOR COLOR_BLUE
adamdunkels4b0459d2003-04-05 12:35:32 +000069
70#define WINDOWCOLOR_FOCUS COLOR_LIGHTBLUE
71#define WINDOWCOLOR COLOR_GRAY1
72
73#define DIALOGCOLOR COLOR_WHITE
74
75#define WIDGETCOLOR_HLINK COLOR_CYAN
76#define WIDGETCOLOR_FWIN COLOR_LIGHTBLUE
77#define WIDGETCOLOR COLOR_GRAY1
78#define WIDGETCOLOR_DIALOG COLOR_WHITE
79#define WIDGETCOLOR_FOCUS COLOR_YELLOW
80
81#define MENUCOLOR COLOR_WHITE
82#define OPENMENUCOLOR COLOR_LIGHTBLUE
83#define ACTIVEMENUITEMCOLOR COLOR_YELLOW
84#endif /* 0 */
85
86#if 1
87/* Black and white monocrome color scheme: */
88#define BORDERCOLOR COLOR_BLACK
89#define SCREENCOLOR COLOR_BLACK
oliverschmidtc34a7482004-08-12 22:07:20 +000090#define BACKGROUNDCOLOR COLOR_BLACK
adamdunkels4b0459d2003-04-05 12:35:32 +000091
92#define WINDOWCOLOR_FOCUS COLOR_WHITE
93#define WINDOWCOLOR COLOR_WHITE
94
95#define DIALOGCOLOR COLOR_WHITE
96
97#define WIDGETCOLOR_HLINK COLOR_WHITE
98#define WIDGETCOLOR_FWIN COLOR_WHITE
99#define WIDGETCOLOR COLOR_WHITE
100#define WIDGETCOLOR_DIALOG COLOR_WHITE
101#define WIDGETCOLOR_FOCUS COLOR_WHITE
102
103#define MENUCOLOR COLOR_WHITE
104#define OPENMENUCOLOR COLOR_WHITE
105#define ACTIVEMENUITEMCOLOR COLOR_WHITE
106#endif /* 0 */
107
108#if 0
109/* Blue monocrome color scheme: */
110#define BORDERCOLOR COLOR_BLUE
111#define SCREENCOLOR COLOR_BLUE
oliverschmidtc34a7482004-08-12 22:07:20 +0000112#define BACKGROUNDCOLOR COLOR_BLUE
adamdunkels4b0459d2003-04-05 12:35:32 +0000113
114#define WINDOWCOLOR_FOCUS COLOR_LIGHTBLUE
115#define WINDOWCOLOR COLOR_LIGHTBLUE
116
117#define DIALOGCOLOR COLOR_LIGHTBLUE
118
119#define WIDGETCOLOR_HLINK COLOR_LIGHTBLUE
120#define WIDGETCOLOR_FWIN COLOR_LIGHTBLUE
121#define WIDGETCOLOR COLOR_LIGHTBLUE
122#define WIDGETCOLOR_DIALOG COLOR_LIGHTBLUE
123#define WIDGETCOLOR_FOCUS COLOR_LIGHTBLUE
124
125#define MENUCOLOR COLOR_LIGHTBLUE
126#define OPENMENUCOLOR COLOR_LIGHTBLUE
127#define ACTIVEMENUITEMCOLOR COLOR_LIGHTBLUE
128#endif /* 0 */
129
130#if 0
131/* Gray color scheme: */
132#define BORDERCOLOR COLOR_GRAY1
133#define SCREENCOLOR COLOR_GRAY1
oliverschmidtc34a7482004-08-12 22:07:20 +0000134#define BACKGROUNDCOLOR COLOR_GRAY1
adamdunkels4b0459d2003-04-05 12:35:32 +0000135
136#define WINDOWCOLOR_FOCUS COLOR_GRAY3
137#define WINDOWCOLOR COLOR_GRAY2
138
139#define DIALOGCOLOR COLOR_WHITE
140
141#define WIDGETCOLOR_HLINK COLOR_LIGHTBLUE
142#define WIDGETCOLOR_FWIN COLOR_GRAY3
143#define WIDGETCOLOR COLOR_GRAY2
144#define WIDGETCOLOR_DIALOG COLOR_WHITE
145#define WIDGETCOLOR_FOCUS COLOR_YELLOW
146
147#define MENUCOLOR COLOR_GRAY3
148#define OPENMENUCOLOR COLOR_WHITE
149#define ACTIVEMENUITEMCOLOR COLOR_YELLOW
150#endif /* 0 */
151
152#if 0
153/* Red color scheme: */
154#define BORDERCOLOR COLOR_BLACK
155#define SCREENCOLOR COLOR_BLACK
oliverschmidtc34a7482004-08-12 22:07:20 +0000156#define BACKGROUNDCOLOR COLOR_BLACK
adamdunkels4b0459d2003-04-05 12:35:32 +0000157
158#define WINDOWCOLOR_FOCUS COLOR_LIGHTRED
159#define WINDOWCOLOR COLOR_RED
160
161#define DIALOGCOLOR COLOR_WHITE
162
163#define WIDGETCOLOR_HLINK COLOR_LIGHTBLUE
164#define WIDGETCOLOR_FWIN COLOR_YELLOW
165#define WIDGETCOLOR COLOR_LIGHTRED
166#define WIDGETCOLOR_DIALOG COLOR_WHITE
167#define WIDGETCOLOR_FOCUS COLOR_YELLOW
168
169#define MENUCOLOR COLOR_LIGHTRED
170#define OPENMENUCOLOR COLOR_WHITE
171#define ACTIVEMENUITEMCOLOR COLOR_YELLOW
172#endif /* 0 */
173
174
175#endif /* __CTK_CONIO_CONF_H__ */