Make it build with -DCOMPILE_AMALGATION=ON. Still not certain how intern_draw/next_po...
[supertux.git] / src / supertux / colorscheme.cpp
1 //  SuperTux
2 //  Copyright (C) 2009 qMax
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "gui/menu.hpp"
18 #include "object/floating_text.hpp"
19 #include "object/level_time.hpp"
20 #include "object/text_object.hpp"
21 #include "supertux/levelintro.hpp"
22 #include "supertux/player_status.hpp"
23 #include "supertux/statistics.hpp"
24 #include "supertux/textscroller.hpp"
25 #include "trigger/climbable.hpp"
26 #include "trigger/secretarea_trigger.hpp"
27 #include "video/color.hpp"
28 #include "worldmap/worldmap.hpp"
29
30 Color LevelIntro::header_color(1.0,1.0,0.6);
31 Color LevelIntro::author_color(1.0,1.0,1.0);
32 Color LevelIntro::stat_hdr_color(0.2,0.5,1.0);
33 Color LevelIntro::stat_color(1.0,1.0,1.0);
34
35 Color Statistics::header_color(1.0,1.0,1.0);
36 Color Statistics::text_color(1.0,1.0,0.6);
37
38 Color Menu::default_color(1.0,1.0,1.0);
39 Color Menu::active_color(0.2,0.5,1.0);
40 Color Menu::inactive_color(0.5,0.5,0.5);
41 Color Menu::label_color(0.0,1.0,1.0);
42 Color Menu::field_color(1.0,1.0,0.6);
43
44 Color PlayerStatus::text_color(1.0,1.0,0.6);
45
46 Color TextObject::default_color(1.0,1.0,1.0);
47
48 Color FloatingText::text_color(1.0,1.0,0.6);
49
50 Color LevelTime::text_color(1.0,1.0,0.6);
51
52 Color SecretAreaTrigger::text_color(1.0,1.0,0.6);
53
54 Color Climbable::text_color(1.0,1.0,0.6);
55
56 Color worldmap::WorldMap::level_title_color(1.0,1.0,1.0);
57 Color worldmap::WorldMap::message_color(1.0,1.0,0.6);
58 Color worldmap::WorldMap::teleporter_message_color(1.0,1.0,1.0);
59
60 Color TextScroller::small_color(1.0,1.0,1.0);
61 Color TextScroller::heading_color(1.0,1.0,0.6);
62 Color TextScroller::reference_color(0.2,0.6,1.0);
63 Color TextScroller::normal_color(1.0,1.0,1.0);
64
65 /* EOF */