mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
18 lines
922 B
PHP
18 lines
922 B
PHP
<?PHP // $Id$
|
|
|
|
$THEME->body = "#FFEECE"; // Main page color
|
|
$THEME->cellheading = "#FFD991"; // Standard headings of big tables
|
|
$THEME->cellheading2 = "#FFC85F"; // Highlight headings of tables
|
|
$THEME->cellcontent = "#FFFFFF"; // For areas with text
|
|
$THEME->cellcontent2 = "#FEE6B9"; // Alternate colour
|
|
$THEME->borders = "#555555"; // Table borders
|
|
$THEME->highlight = "#AAFFAA"; // Highlighted text (eg after a search)
|
|
$THEME->hidden = "#AAAAAA"; // To color things that are hidden
|
|
$THEME->autolink = "#EEEEEE"; // To color auto-generated links (eg glossary)
|
|
|
|
$THEME->custompix = false; // If true, then this theme must have a "pix"
|
|
// subdirectory that contains copies of all
|
|
// files from the moodle/pix directory
|
|
// See "cordoroyblue" for an up-to-date example.
|
|
?>
|