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 "object/floating_text.hpp" |
20 | #include "object/level_time.hpp" |
21 | #include "object/text_object.hpp" |
22 | #include "supertux/levelintro.hpp" |
23 | #include "supertux/player_status_hud.hpp" |
24 | #include "supertux/textscroller_screen.hpp" |
25 | #include "trigger/climbable.hpp" |
26 | #include "trigger/secretarea_trigger.hpp" |
27 | #include "worldmap/worldmap.hpp" |
28 | |
29 | Color LevelIntro::(1.f,1.f,0.6f); |
30 | Color LevelIntro::s_author_color(1.f,1.f,1.f); |
31 | Color LevelIntro::s_stat_hdr_color(0.2f,0.5f,1.f); |
32 | Color LevelIntro::s_stat_color(1.f,1.f,1.f); |
33 | |
34 | Color Statistics::(1.f,1.f,1.f); |
35 | Color Statistics::text_color(1.f,1.f,0.6f); |
36 | |
37 | Color ColorScheme::Menu::(1.f,1.f,1.f); |
38 | Color ColorScheme::Menu::(0.4f,0.66f,1.f); |
39 | Color ColorScheme::Menu::(0.5f,0.5f,0.5f); |
40 | Color ColorScheme::Menu::(0.f,1.f,1.f); |
41 | Color ColorScheme::Menu::(1.f,1.f,0.6f); |
42 | |
43 | Color PlayerStatusHUD::text_color(1.f,1.f,0.6f); |
44 | |
45 | Color TextObject::default_color(1.f,1.f,1.f); |
46 | |
47 | Color FloatingText::text_color(1.f,1.f,0.6f); |
48 | |
49 | Color LevelTime::text_color(1.f,1.f,0.6f); |
50 | |
51 | Color SecretAreaTrigger::text_color(1.f,1.f,0.6f); |
52 | |
53 | Color Climbable::text_color(1.f,1.f,0.6f); |
54 | |
55 | Color worldmap::WorldMap::level_title_color(1.f,1.f,1.f); |
56 | Color worldmap::WorldMap::message_color(1.f,1.f,0.6f); |
57 | Color worldmap::WorldMap::teleporter_message_color(1.f,1.f,1.f); |
58 | |
59 | Color ColorScheme::Text::small_color(1.f,1.f,1.f); |
60 | Color ColorScheme::Text::heading_color(1.f,1.f,0.6f); |
61 | Color ColorScheme::Text::reference_color(0.2f,0.6f,1.f); |
62 | Color ColorScheme::Text::normal_color(1.f,1.f,1.f); |
63 | |
64 | /* EOF */ |
65 | |