// hijack the system theme a little...

with( core.themes.system )
{
    font        = '7pt Verdana';
    ctrlFont    = core.themes.system.font;
    hlFont      = core.themes.system.font;
    selFont     = core.themes.system.font;
    appFont     = core.themes.system.font;
    captionFont = core.themes.system.font;
}

scca_themes = {};
scca_themes.App = new Theme();
with(scca_themes.App){

  ctrlFont    = '7pt Verdana';

  name            = "MessageCentre";
  bgColor         = "#E1E9EC";      // normal background
  fgColor         = "#000000";      // normal text
  ctrlBgColor     = "#8AB7CA";       // control base
  ctrlFgColor     = "black";      // control text
  ctrlFgDisabled  = "inactivecaption";
  ctrlFgShadow    = "";
  hlBgColor       = "#8AB7CA";              // mouse-over background
  hlFgColor       = "white";                // mouse-over text
  selBgColor      = "#A45800";              // selected background
  selFgColor      = "#FFFFFF";              // selected text
  appBgColor      = "#461A0A";              // appworkspace background
  appFgColor      = "#FFFFFF";              // appworkspace text
  captionBgColor1 = "#004100";              // caption background primary
  captionBgColor2 = "#007D00";              // caption background secondary
  captionFgColor  = "#FFFFFF";              // caption text
  inactiveBgColor = "inactivecaption";
  inactiveFgColor = "inactivecaptiontext";
  bdrLight        = "threedhighlight";      // border color
  bdrDark         = "threedshadow";         // border color

  bdrColor        = getOutset();
  bdrWidth        = 1;                // border width
  bdrOutset       = "outset";         // what to use for outset
  bdrInset        = "inset";          // what to use for inset
  bdrSolid        = "solid";          // what to use for solid borders
  bdrFrame        = "groove";         // what to user for frame borders

  shadowBg        = "#8AB7CA";
  shadowFg        = "#FFFFFF";

  colorFadeInc    = 10;               // for components that support color fading
  colorFadeSpeed  =  5;               // for components that support color fading
}
core.themes.push(scca_themes.App);