Fixed includes and bugs so that it compiles
[construo.git] / colors.cxx
blob68d1472e6b026282cbd62d0a8a07f3b668b2d543
1 // $Id: colors.cxx,v 1.5 2003/07/28 08:57:34 grumbel Exp $
2 //
3 // Construo - A wire-frame construction game
4 // Copyright (C) 2002 Ingo Ruhnke <grumbel@gmx.de>
5 //
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #include "colors.hxx"
22 namespace Colors
24 Color button_fg_pressed (0xFFFFFFFF);
25 Color button_fg_hover (0x009f9fFF);
26 Color button_fg_passive (0x007f7fFF);
28 Color button_bg_pressed (0x000000FF);
29 Color button_bg_hover (0x006060EE);
30 Color button_bg_passive (0x004f4fAA);
31 Color button_bg_active (0x00AAAAAA);
33 Color new_spring (0xAAAAAAFF);
34 Color selection_rect (0xFFFFFFFF);
35 Color selection_resizer (0xFFFF00FF);
37 Color rect_collider_fg (0x0000FFFF);
38 Color rect_collider_bg (0x0000AAFF);
39 Color highlight (0xEEEEEEFF);
41 Color grid_color (0x444444FF);
42 Color ground_color (0x000066FF);
43 Color ground_grid_color (0x000073FF);
45 } // namespace
47 /* EOF */