/* browser/style/colourscheme.css
   This file is part of Decimail; see http://decimail.org/
   (C) 2006-2007 Philip Endecott

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   any later version.
  
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
  
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/


/* Define the overall colour scheme */


/* First define some colour names */

define(paleyellow,     rgb(245,240,224))
define(darkblue,       rgb(0,0,100))
define(brightblue,     rgb(0,0,200))
define(lightgrey,      rgb(210,210,210))
define(dayglowyellow,  rgb(255,255,50))


/* Colourscheme macros all have names ending _CS. */

/* The default colourscheme: */
define(DEFAULT_CS, background-color: paleyellow;
                   border-color: paleyellow;
                   color: black;)


/* The colour scheme for "text areas", i.e. entry fields and similar: */
define(TEXT_CS, background-color: white;
                color: black;)


/* The colour scheme for menus: */
define(MENU_CS, background-color: lightgrey;
                border-color: black;
                color: black;)


/* Colour schemes for hovered-over items: */
/* Default: */
define(HOVER_CS, background-color: white;
                 color: black;)

/* Text areas: */
define(TEXT_HOVER_CS, background-color: lightgrey;
                      color: black;)

/* Drop targets during drag and drop: */
define(DROPTARGET_HOVER_CS, background-color: darkblue !important;
                            color: white !important;)


/* Colour scheme for selected items: */
define(SELECTED_CS, background: brightblue !important;
                    color: white !important;)

/* Results of find operations: */
define(FINDRESULT_CS, background: dayglowyellow;
                      color: black;)


/* Colour for sliders: */
define(SLIDER_COLOUR, grey)

/* The frames between the panes have the same colour as the background: */
define(FRAMES,         paleyellow)


