00001 // $Id: colors.hxx,v 1.2 2003/01/05 15:29:15 grumbel Exp $ 00002 // 00003 // Construo - A wire-frame construction game 00004 // Copyright (C) 2002 Ingo Ruhnke <grumbel@gmx.de> 00005 // 00006 // This program is free software; you can redistribute it and/or 00007 // modify it under the terms of the GNU General Public License 00008 // as published by the Free Software Foundation; either version 2 00009 // of the License, or (at your option) any later version. 00010 // 00011 // This program is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU General Public License 00017 // along with this program; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00019 00020 #ifndef HEADER_CONSTRUO_COLORS_HXX 00021 #define HEADER_CONSTRUO_COLORS_HXX 00022 00023 #include "color.hxx" 00024 00025 namespace Colors 00026 { 00027 extern Color button_fg_pressed; 00028 extern Color button_fg_hover; 00029 extern Color button_fg_passive; 00030 00031 extern Color button_bg_pressed; 00032 extern Color button_bg_hover; 00033 extern Color button_bg_passive; 00034 extern Color button_bg_active; 00035 00037 extern Color new_spring; 00038 00039 extern Color selection_rect; 00040 extern Color selection_resizer; 00041 00043 extern Color rect_collider_fg; 00044 extern Color rect_collider_bg; 00045 00047 extern Color highlight; 00048 } 00049 00050 #endif 00051 00052 /* EOF */