<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
In this CSS file you can define your very own css flags. 
The default ones provied only show color and the background
color of the attribute. All other formatting for these 
attributes are defined in general.css. You may add more 
attributes as you see fit.

body - main page and title bar
th   - table headers
td   - table cells other than headers
td.text_layer - page content area
menubackground - side menu background color
titlebarfontcolor - title bar font color
lightoverdark   - color of font and background (light font, dark background)
darkoverlight   - color of font and background (dark font, light background)
*/

body
{
background-color:#7D26CD;
} 

th
{
background-color:#DAA520;
}

td
{
background-color:#eeffff;
}

td.text_layer
{
background-color:#fffdaa;
}

.menubackground
{
background:#FFFFCC;
}

.titlebarfontcolor
{
color:#eeeeee;
}

.darkoverlight
{
background-color:#DDDDDD;
color:#aa0000;
}

h2.lightoverdark
{
background-color:#aa0000;
color:#DDDDDD;
}

h3.lightoverdark
{
background-color:mediumorchid;
color:#DDDDDD;
}

td.active{ background-color:lime; }
td.caution{ background-color:FFFFFF; }
td.retired{ background-color:999999; }
tr.highlight td{ 
  background-color:999999; 
}

font.emph {font-style:oblique }
</pre></body></html>