32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Name: Nature
|
|
* Date: 13 Oct 2021
|
|
*
|
|
* @author Andrew Sachen
|
|
* @license Unlicense
|
|
* @version $Id$
|
|
* @package squirrelmail
|
|
* @subpackage themes
|
|
*/
|
|
|
|
global $color;
|
|
$color[0] = '#008000'; // Title bar at the top of the page header.
|
|
$color[1] = '#800000'; // Error messages border, usually red.
|
|
$color[2] = '#FF0000'; // Error messages, usually red.
|
|
$color[3] = '#004000'; // Left folder list background color.
|
|
$color[4] = '#00A000'; // Normal background color.
|
|
$color[5] = '#009000'; // Header of the message index (From, Date, Subject).
|
|
$color[6] = '#00A000'; // Normal text on the left folder list.
|
|
$color[7] = '#00FF00'; // Links in the right frame.
|
|
$color[8] = '#FFFFFF'; // Normal text.
|
|
$color[9] = '#006000'; // Darker version of #0.
|
|
$color[10] = '#004000'; // Darker version of #9.
|
|
$color[11] = '#00D000'; // Special folders color (Inbox, Trash, Sent).
|
|
$color[12] = '#00C000'; // Alternate color for message list (alters between #4 and this one).
|
|
$color[13] = '#770000'; // Color for single-quoted text ("> text") when reading.
|
|
$color[14] = '#770000'; // Color for text with more than one quote.
|
|
$color[15] = '#000000'; // Non-selectable folders in the left frame.
|
|
$color[16] = '#00FF00'; // Highlight color (since SquirrelMail 1.5.1, default: $color[2])
|
|
|