Happy New Year
[squirrelmail.git] / themes / solarized_light.php
1 <?php
2
3 /**
4 * Name: Solarized Light
5 * Date: 27 Feb 2013
6 *
7 * @author Pavneet Arora
8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 * @version $Id$
10 * @package squirrelmail
11 * @subpackage themes
12 */
13
14 /*
15 * This theme is based on Ethan Schoonover's Solarized palette.
16 *
17 * Details may be found at http://ethanschoonover.com/solarized
18 *
19 * SOLARIZED HEX 16/8 TERMCOL
20 * --------- ------- ---- ------- ----------- ---------- ----------- -----------
21 * base03 #002b36 8/4 brblack
22 * base02 #073642 0/4 black
23 * base01 #586e75 10/7 brgreen
24 * base00 #657b83 11/7 bryellow
25 * base0 #839496 12/6 brblue
26 * base1 #93a1a1 14/4 brcyan
27 * base2 #eee8d5 7/ 7 white 254
28 * base3 #fdf6e3 15/7 brwhite
29 * yellow #b58900 3/3 yellow
30 * orange #cb4b16 9/3 brred
31 * red #dc322f 1/1 red
32 * magenta #d33682 5/5 magenta
33 * violet #6c71c4 13/5 brmagenta
34 * blue #268bd2 4/4 blue
35 * cyan #2aa198 6/6 cyan
36 * green #859900 2/2 green
37 */
38
39 global $color;
40 $color[0] = '#586e75'; // Title bar at the top of the page header.
41 $color[1] = '#800000'; // Error messages border, usually red.
42 $color[2] = '#dc322f'; // Error messages, usually red.
43 $color[3] = '#fdf6e3'; // Left folder list background color.
44 $color[4] = '#eee8d5'; // Normal background color.
45 $color[5] = '#073642'; // Header of the message index (From, Date, Subject).
46 $color[6] = '#859900'; // Normal text on the left folder list.
47 $color[7] = '#657b83'; // Links in the right frame.
48 $color[8] = '#839496'; // Normal text.
49 $color[9] = '#073642'; // Darker version of #0.
50 $color[10] = '#376589'; // Darker version of #9.
51 $color[11] = '#b58900'; // Special folders color (Inbox, Trash, Sent).
52 $color[12] = '#fdf6e3'; // Alternate color for message list (alters between #4 and this one).
53 $color[13] = '#770000'; // Color for single-quoted text ("> text") when reading.
54 $color[14] = '#770000'; // Color for text with more than one quote.
55 $color[15] = '#001166'; // Non-selectable folders in the left frame.
56 $color[16] = '#001166'; // Highlight color (since SquirrelMail 1.5.1, default: $color[2])
57