Check return value of some lisp.get calls
[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 "supertux/colorscheme.hpp"
18
19 #include "gui/menu.hpp"
20 #include "object/floating_text.hpp"
21 #include "object/level_time.hpp"
22 #include "object/text_object.hpp"
23 #include "supertux/levelintro.hpp"
24 #include "supertux/player_status.hpp"
25 #include "supertux/statistics.hpp"
26 #include "supertux/textscroller.hpp"
27 #include "trigger/climbable.hpp"
28 #include "trigger/secretarea_trigger.hpp"
29 #include "video/color.hpp"
30 #include "worldmap/worldmap.hpp"
31
32 Color LevelIntro::header_color(1.0,1.0,0.6);
33 Color LevelIntro::author_color(1.0,1.0,1.0);
34 Color LevelIntro::stat_hdr_color(0.2,0.5,1.0);
35 Color LevelIntro::stat_color(1.0,1.0,1.0);
36
37 Color Statistics::header_color(1.0,1.0,1.0);
38 Color Statistics::text_color(1.0,1.0,0.6);
39
40 Color ColorScheme::Menu::default_color(1.0,1.0,1.0);
41 Color ColorScheme::Menu::active_color(0.2,0.5,1.0);
42 Color ColorScheme::Menu::inactive_color(0.5,0.5,0.5);
43 Color ColorScheme::Menu::label_color(0.0,1.0,1.0);
44 Color ColorScheme::Menu::field_color(1.0,1.0,0.6);
45
46 Color PlayerStatus::text_color(1.0,1.0,0.6);
47
48 Color TextObject::default_color(1.0,1.0,1.0);
49
50 Color FloatingText::text_color(1.0,1.0,0.6);
51
52 Color LevelTime::text_color(1.0,1.0,0.6);
53
54 Color SecretAreaTrigger::text_color(1.0,1.0,0.6);
55
56 Color Climbable::text_color(1.0,1.0,0.6);
57
58 Color worldmap::WorldMap::level_title_color(1.0,1.0,1.0);
59 Color worldmap::WorldMap::message_color(1.0,1.0,0.6);
60 Color worldmap::WorldMap::teleporter_message_color(1.0,1.0,1.0);
61
62 Color TextScroller::small_color(1.0,1.0,1.0);
63 Color TextScroller::heading_color(1.0,1.0,0.6);
64 Color TextScroller::reference_color(0.2,0.6,1.0);
65 Color TextScroller::normal_color(1.0,1.0,1.0);
66
67 /* EOF */