This should show the toggle all link into the searchs results.
[squirrelmail.git] / themes / servery_theme.php
CommitLineData
7d451421 1<?php
2
3/*
4 0: Title Bar at the top of the page header
5 1: <not currently used>
6 2: Error messages (usually red)
7 3: Left folder list background color
8 4: Normal background color
9 5: Header of the message index (From, Date, Subject)
10 6: Normal text on the left folder list
11 7: Links in the right frame
12 8: Normal text (usually black)
13 9: Darker version of #0
14 10: Darker version of #9
15 11: Special folders color (Inbox, Trash, Sent)
16/*
17 /** Author: Ondrej Sury <ondrej@globe.cz>
18 Date: August 18, 2000
19 Theme Name: "Servery.cz Theme"
20
21 **/
22
f740c049 23 global $color;
7d451421 24 $color[0] = "#F1EEE3"; // (light gray) TitleBar
25 $color[1] = "#800000"; // (red)
26 $color[2] = "#CC0000"; // (light red) Warning/Error Messages
27 $color[3] = "#7D6F3F"; // (green-blue) Left Bar Background
28 $color[4] = "#FFFFFF"; // (white) Normal Background
29 $color[5] = "#C7B98B"; // (light yellow) Table Headers
30 $color[6] = "#000000"; // (black) Text on left bar
31 $color[7] = "#434031"; // (blue) Links
32 $color[8] = "#000000"; // (black) Normal text
33 $color[9] = "#C7B98B"; // (mid-gray) Darker version of #0
34 $color[10] = "#F1EEE3"; // (dark gray) Darker version of #9
35 $color[11] = "#770000"; // (dark red) Special Folders color
36?>