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
29Color LevelIntro::s_header_color(1.f,1.f,0.6f);
30Color LevelIntro::s_author_color(1.f,1.f,1.f);
31Color LevelIntro::s_stat_hdr_color(0.2f,0.5f,1.f);
32Color LevelIntro::s_stat_color(1.f,1.f,1.f);
33
34Color Statistics::header_color(1.f,1.f,1.f);
35Color Statistics::text_color(1.f,1.f,0.6f);
36
37Color ColorScheme::Menu::default_color(1.f,1.f,1.f);
38Color ColorScheme::Menu::active_color(0.4f,0.66f,1.f);
39Color ColorScheme::Menu::inactive_color(0.5f,0.5f,0.5f);
40Color ColorScheme::Menu::label_color(0.f,1.f,1.f);
41Color ColorScheme::Menu::field_color(1.f,1.f,0.6f);
42
43Color PlayerStatusHUD::text_color(1.f,1.f,0.6f);
44
45Color TextObject::default_color(1.f,1.f,1.f);
46
47Color FloatingText::text_color(1.f,1.f,0.6f);
48
49Color LevelTime::text_color(1.f,1.f,0.6f);
50
51Color SecretAreaTrigger::text_color(1.f,1.f,0.6f);
52
53Color Climbable::text_color(1.f,1.f,0.6f);
54
55Color worldmap::WorldMap::level_title_color(1.f,1.f,1.f);
56Color worldmap::WorldMap::message_color(1.f,1.f,0.6f);
57Color worldmap::WorldMap::teleporter_message_color(1.f,1.f,1.f);
58
59Color ColorScheme::Text::small_color(1.f,1.f,1.f);
60Color ColorScheme::Text::heading_color(1.f,1.f,0.6f);
61Color ColorScheme::Text::reference_color(0.2f,0.6f,1.f);
62Color ColorScheme::Text::normal_color(1.f,1.f,1.f);
63
64/* EOF */
65