1
|
1 /* $Id: colors.c,v 1.1.1.1 1997/12/06 05:41:28 darius Exp $ */
|
|
2
|
|
3 /* colors.c
|
|
4 *
|
|
5 * Kevin P. Smith 6/11/89
|
|
6 */
|
|
7 #include "copyright2.h"
|
|
8 #include <stdio.h>
|
|
9 #include <string.h>
|
|
10 #include "Wlib.h"
|
|
11 #include "defs.h"
|
|
12 #include "struct.h"
|
|
13 #include "data.h"
|
|
14 #include "proto.h"
|
|
15
|
|
16 void
|
|
17 getColorDefs()
|
|
18 {
|
|
19 borderColor = W_Grey;
|
|
20 backColor = W_Black;
|
|
21 foreColor = W_White;
|
|
22 textColor = W_White;
|
|
23 shipCol[0] = W_Grey;
|
|
24 shipCol[1] = W_Yellow;
|
|
25 shipCol[2] = W_Red;
|
|
26 shipCol[3] = W_Green;
|
|
27 shipCol[4] = W_Cyan;
|
|
28 shipCol[5] = W_Grey;
|
|
29 warningColor = W_Red;
|
|
30 unColor = W_Grey;
|
|
31 rColor = W_Red;
|
|
32 yColor = W_Yellow;
|
|
33 gColor = W_Green;
|
|
34 myColor = W_White;
|
|
35 }
|