annotate Discovery/Src/gfx_colors.c @ 169:842f57bbaaad cleanup-1

Bugfix: highlight the menu underline correctly on selected state This fixes an optical bug. In dive and simulation mode, the underline in the top menu was not highlighted correctly for the DECO ans SYS submenu's. The check when to highlight simply was not correct. And, yes, this part of the code is rather obfuscated, and deserves some attention later on. Reported-by: Matthias Heinrichs <matthias.heinrichs@heinrichsweikamp.com> Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
author Jan Mulder <jlmulder@xs4all.nl>
date Sun, 10 Mar 2019 10:09:58 +0100
parents 5f11787b4f42
children 998529b3e142
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1 /**
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
2 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
3 * @file gfx_colors.c
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
4 * @author heinrichs weikamp gmbh
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
5 * @version V0.0.1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
6 * @date 02-May-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
7 * @brief All colors used are defined here
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
8 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
9 @verbatim
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
10 ==============================================================================
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
11 ##### How to use #####
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
12 ==============================================================================
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
13 @endverbatim
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
14 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
15 * @attention
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
16 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
17 * <h2><center>&copy; COPYRIGHT(c) 2014 heinrichs weikamp</center></h2>
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
18 *
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
19 ******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
20 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
21
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
22 /* Includes ------------------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
23 #include "gfx_colors.h"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
24
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
25 /* Exported variables --------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
26
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
27 /*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
28 0x0000FF00, gr�n
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
29 0x00FF0000, rot
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
30 0x000000FF, blau
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
31 0x00FFFF00, gelb
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
32 0x0000FFFF, cyan
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
33 0x00000000, black
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
34 0x000092D0, hw hellblau f�r Beschriftun
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
35 */
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
36
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
37
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
38 uint32_t ColorLUT[] =
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
39 {
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
40 // ARGB
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
41 0x00FFFFFF, // \020 wei�
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
42 0x00777777, // \021 grau f�r inaktiv / hw 151027: war zuvor 0x00555555 grau
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
43 0x0050FF50, // \022 units
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
44 0x003060FF, // \023 blau
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
45 0x00FFFF00, // \024 + CLUT_WarningYellow
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
46 0x00FF0000, // \025 + CLUT_WarningRed
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
47 0x0000FF00, // \026 + CLUT_NiceGreen
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
48 0x00FFFFFF, // \027 DIVE_MainColorIfNotWhite\020
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
49 0x00FFFFFF, // \030 DIVE_PluginBoxMainColor
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
50 0x00777777, // \031 DIVE_PluginBoxGrey
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
51 0x0050FF50, // \032 DIVE_LabelColor
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
52 0x00FFFFFF, // CLUT_DIVE_FieldSeperatorLines
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
53 0x0050FF50, // CLUT_DIVE_pluginbox // old pink 0x00FF20FF
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
54 0x00FF00FF, // CLUT_NiceBlue descent graph (apnoe)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
55 0x00FFFFFF, // CLUT_DIVE_SPARE22 - UNUSED
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
56 0x0000FF00, // CLUT_DiveMainLabel - fast nur Debugmode
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
57 0x00555555, // CLUT_pluginboxSurface
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
58 0x00101010, // CLUT_MenuLineUnselected
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
59 0x00000000, // CLUT_MenuLineUnselectedSeperator
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
60 0x00000000, // CLUT_MenuLineSelected
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
61 0x00000000, // CLUT_MenuEditLineSelected
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
62 0x008F8F00, // CLUT_MenuLineSelectedSides
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
63 0x008F8F00, // CLUT_MenuLineSelectedSeperator
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
64 0x00000000, // CLUT_MenuTopBackground
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
65 0x00FFFF00, // CLUT_Group0 - UNUSED
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
66 0x00646464, // CLUT_MenuEditCursor,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
67 0x008C8C8C, // CLUT_MenuEditInfo,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
68 0x0068F10D, // CLUT_MenuEditActive, - UNUSED
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
69 0x00FFFFFF, // CLUT_MenuEditButtonColor1,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
70 0x00FFFFFF, // CLUT_MenuEditFieldRegular,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
71 0x00000000, // CLUT_MenuEditFieldSelected,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
72 0x00000000, // CLUT_MenuEditField0,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
73 0x00FFFFFF, // CLUT_MenuEditField1,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
74 0x00FFFFFF, // CLUT_MenuEditField2,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
75 0x00FFFFFF, // CLUT_MenuEditField3,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
76 0x00FFFFFF, // CLUT_MenuEditField4,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
77 0x00FFFFFF, // CLUT_MenuEditField5,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
78 0x00FFFFFF, // CLUT_MenuEditField6,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
79 0x00FFFFFF, // CLUT_MenuEditField7,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
80 0x00FFFFFF, // CLUT_MenuEditField8,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
81 0x00FFFFFF, // CLUT_MenuEditField9,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
82 0x00FFFFFF, // CLUT_MenuEditDigit,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
83 0x0000AEFF, // CLUT_MenuPageGasOC
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
84 0x0000AE7D, // CLUT_MenuPageGasCC
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
85 0x00A7D744, // CLUT_MenuPageGasSP
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
86 0x00EEAA00, // CLUT_MenuPageXtra
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
87 0x00FF0000, // CLUT_MenuPageDeco
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
88 0x00FFC000,//0x00C4EACC, // CLUT_MenuPageDecoParameter
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
89 0x00AC00ff,//0x00E5AE18, // CLUT_MenuPageHardware
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
90 0x00ff00ff,//0x00E5AEFF, // CLUT_MenuPageSystem
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
91 0x00C4EACC,//0x00FFFF00, // CLUT_MenuPageDivePlanner
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
92 0x00000000, // CLUT_MenuPage9 - UNUSED
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
93 0x00000000, // CLUT_MenuPage10 - UNUSED
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
94 0x00FFFFFF, // CLUT_ButtonSymbols
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
95 0x000092D0, // CLUT_InfoSurface
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
96 0x000092D0, // CLUT_InfoDive - UNUSED
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
97 0x000092D0, // CLUT_InfoCompass
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
98 0x00A0A0A0, // CLUT_InfoCursor
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
99 0x008C8C8C, // CLUT_InfoInActive,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
100 0x0068F10D, // CLUT_InfoActive,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
101 0x00FFFFFF, // CLUT_InfoButtonColor1,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
102 0x00FFFFFF, // CLUT_InfoFieldRegular,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
103 0x00000000, // CLUT_InfoFieldSelected, - UNUSED
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
104 0x00FFFFFF, // CLUT_InfoField0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
105 0x00FFFFFF, // CLUT_InfoField1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
106 0x00FFFFFF, // CLUT_InfoField2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
107 0x00FFFFFF, // CLUT_InfoField3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
108 0x00FFFFFF, // CLUT_InfoField4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
109 0x00FFFFFF, // CLUT_InfoField5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
110 0x00FFFFFF, // CLUT_InfoField6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
111 0x00FFFFFF, // CLUT_InfoField7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
112 0x00FFFFFF, // CLUT_InfoField8
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
113 0x00FFFFFF, // CLUT_InfoField9
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
114 0x003060FF, // CLUT_InfoPageLogbook
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
115 0x00AAAAAA, // CLUT_LogbookGrid,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
116 0x00FFFFFF, // CLUT_LogbookText
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
117 0x00FF0000, // CLUT_LogbookTemperature
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
118 0x00FF8000, // CLUT_GasSensor0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
119 0x00FFFFFF, // CLUT_GasSensor1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
120 0x0000FF00, // CLUT_GasSensor2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
121 0x00FF0000, // CLUT_GasSensor3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
122 0x000000FF, // CLUT_GasSensor4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
123 0x00FFFF00, // CLUT_GasSensor5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
124 0x0000FFFF, // CLUT_GasSensor6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
125 0x00FF00FF, // CLUT_GasSensor7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
126 0x00FFFFFF, // CLUT_GasSensor8
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
127 0x00FFFFFF, // CLUT_GasSensor9
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
128 0x00FFFFFF, // CLUT_GasSensor10
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
129 0x00FFFFFF, // CLUT_GasSensor11
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
130 0x00FFFFFF, // CLUT_GasSensor12
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
131 0x00FFFFFF, // CLUT_GasSensor13
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
132 0x00FFFFFF, // CLUT_GasSensor14
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
133 0x00FFFFFF, // CLUT_GasSensor15
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
134 0x00FF5050, // CLUT_CompassUserBackHeadingTick
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
135 0x00888888, // CLUT_CompassSubTick
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
136 0x00FFFFFF, // CLUT_CompassNorthTick
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
137 0x0050FF50, // CLUT_CompassUserHeadingTick
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
138 0x0000FF00, // CLUT_EverythingOkayGreen
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
139 0x000092D0, // CLUT_ButtonSurfaceScreen
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
140 0x00FFFFFF, // CLUT_BatteryStandard
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
141 0x0000FF00, // CLUT_BatteryCharging
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
142 0x00FF8000, // CLUT_BatteryProblem
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
143 0x00FFFFFF, // \027 CLUT_MainColor ---------- colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
144 0x00FFFFFF, // \030 DIVE_PluginBoxMainColor colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
145 0x00777777, // \031 DIVE_PluginBoxGrey colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
146 0x0050FF50, // \032 DIVE_LabelColor colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
147 0x00FFFFFF, // CLUT_DIVE_FieldSeperatorLines colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
148 0x0050FF50, // CLUT_DIVE_pluginbox colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
149 0x00FFFFFF, // CLUT_DIVE_SPARE21 colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
150 0x00FFFFFF, // CLUT_DIVE_SPARE22 colorscheme 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
151 0x00F29400, // CLUT_MainColor --------------- colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
152 0x00F29400, // \030 DIVE_PluginBoxMainColor colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
153 0x00E2001A, // \031 DIVE_PluginBoxGrey colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
154 0x00E2001A, // \032 DIVE_LabelColor colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
155 0x00F29400, // CLUT_DIVE_FieldSeperatorLines colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
156 0x00E2001A, // CLUT_DIVE_pluginbox colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
157 0x00FFFFFF, // CLUT_DIVE_SPARE21 colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
158 0x00FFFFFF, // CLUT_DIVE_SPARE22 colorscheme 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
159 0x0000FF00, // \027 CLUT_MainColor ---------- colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
160 0x0000FF00, // \030 DIVE_PluginBoxMainColor colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
161 0x0000948D, // \031 DIVE_PluginBoxGrey colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
162 0x0000948D, // \032 DIVE_LabelColor colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
163 0x0000FF00, // CLUT_DIVE_FieldSeperatorLines colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
164 0x0000948D, // CLUT_DIVE_pluginbox colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
165 0x00FFFFFF, // CLUT_DIVE_SPARE21 colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
166 0x00FFFFFF, // CLUT_DIVE_SPARE22 colorscheme 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
167 0x0033A1D6, // CLUT_MainColor --------------- colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
168 0x00FFFFFF, // \030 DIVE_PluginBoxMainColor colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
169 0x00777777, // \031 DIVE_PluginBoxGrey colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
170 0x000000FF, // \032 DIVE_LabelColor colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
171 0x0033A1D6, // CLUT_DIVE_FieldSeperatorLines colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
172 0x000000FF, // CLUT_DIVE_pluginbox colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
173 0x00FFFFFF, // CLUT_DIVE_SPARE21 colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
174 0x00FFFFFF, // CLUT_DIVE_SPARE22 colorscheme 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
175 };
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
176
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
177
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
178
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
179
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
180 /* Exported functions --------------------------------------------------------*/
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
181