1 //  Construo - A wire-frame construction game
2 //  Copyright (C) 2002 Ingo Ruhnke <grumbel@gmx.de>
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 "colors.hpp"
18 
19 namespace Colors
20 {
21 Color button_fg_pressed (0xFFFFFFFF);
22 Color button_fg_hover   (0x009f9fFF);
23 Color button_fg_passive (0x007f7fFF);
24 
25 Color button_bg_pressed (0x000000FF);
26 Color button_bg_hover   (0x006060EE);
27 Color button_bg_passive (0x004f4fAA);
28 Color button_bg_active  (0x00AAAAAA);
29 
30 Color new_spring        (0xAAAAAAFF);
31 Color selection_rect    (0xFFFFFFFF);
32 Color selection_resizer (0xFFFF00FF);
33 
34 Color rect_collider_fg  (0x0000FFFF);
35 Color rect_collider_bg  (0x0000AAFF);
36 Color highlight         (0xEEEEEEFF);
37 
38 Color grid_color        (0x444444FF);
39 Color grid_color2       (0x666666FF);
40 Color ground_color      (0x000066FF);
41 Color ground_grid_color (0x000073FF);
42 
43 } // namespace
44 
45 /* EOF */
46