adding two themes. #1217066 and #1217069
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 3 Jul 2005 10:32:32 +0000 (10:32 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 3 Jul 2005 10:32:32 +0000 (10:32 +0000)
Simple Green 2 theme is similar to Simple Green theme, but colors are softer
and contrast differs.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9704 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
config/config_default.php
themes/simple_green2.php [new file with mode: 0644]
themes/simple_purple.php [new file with mode: 0644]

index 1b9063b29a1dcd1a3b579da93b3eb7a50075c69d..1ea48029206b5bef2e3019b449689f96b0b6d0f1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -387,6 +387,8 @@ Version 1.5.1 -- CVS
     by John Lane.
   - Added subtree/one level search options to address book LDAP backend 
     (#1212618).
+  - Added Simple Green 2 and Simple Purple themes by Vicky Pyne (#1217066 
+    and #1217069).
 
 Version 1.5.0 - 2 February 2004
 -------------------------------
index b31856a6ddb1ae565974cec063a96c8e2c7b2f17..eb12d9b5dbc9b5238464eec99dd956d2d8c583f1 100644 (file)
@@ -745,6 +745,12 @@ $theme[40]['NAME'] = 'Wood';
 $theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php';
 $theme[41]['NAME'] = 'Bluesome';
 
+$theme[42]['PATH'] = SM_PATH . 'themes/simple_green2.php';
+$theme[42]['NAME'] = 'Simple Green 2';
+
+$theme[43]['PATH'] = SM_PATH . 'themes/simple_purple.php';
+$theme[43]['NAME'] = 'Simple Purple';
+
 /**
  * LDAP server(s)
  *   Array of arrays with LDAP server parameters. See
diff --git a/themes/simple_green2.php b/themes/simple_green2.php
new file mode 100644 (file)
index 0000000..6c686db
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+/**
+ * Author:       Vicky Pyne <dotvicky@dotvicky.net>
+ * Date:         June 7, 2005
+ * Theme Name:   'Simple Green'
+ * Copyright:    Vicky Pyne <dotvicky@dotvicky.net>, 2005
+ * Licence:      GNU Public License
+ *
+ * Published on SquirrelMail SourceForge tracker (#1217066).
+ * Modified by SquirrelMail developers to match documentation guidelines.
+ * Copyright (c) 2005 The SquirrelMail Project Team
+ * @package squirrelmail
+ * @subpackage themes
+ */
+
+global $color;
+$color[0]   = '#DCDCDC'; // (light gray)     TitleBar
+$color[1]   = '#800000'; // (red)
+$color[2]   = '#CC0000'; // (light red)      Warning/Error Messages
+$color[3]   = '#669966'; // (grey-green)     Left Bar Background
+$color[4]   = '#FFFFFF'; // (white)          Normal Background
+$color[5]   = '#99CC99'; // (light-green)    Table Headers
+$color[6]   = '#000000'; // (black)          Text on left bar
+$color[7]   = '#006633'; // (green)          Links
+$color[8]   = '#000000'; // (black)          Normal text
+$color[9]   = '#ABABAB'; // (mid-gray)       Darker version of #0
+$color[10]  = '#666666'; // (dark gray)      Darker version of #9
+$color[11]  = '#003300'; // (darker green)   Special Folders color
+$color[12]  = '#EDEDED'; // (light gray)     Alternate color for message list
+$color[13]  = '#6666CC'; // (dull blue)      Color for quoted text -- > 1 quote
+$color[14]  = '#333399'; // (dark blue)      Color for quoted text -- >> 2 or more
+$color[15]  = '#669966'; // (grey-green)     Unselectable folders
+?>
diff --git a/themes/simple_purple.php b/themes/simple_purple.php
new file mode 100644 (file)
index 0000000..32e36b2
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+/**
+ * Author:       Vicky Pyne <dotvicky@dotvicky.net>
+ * Date:         June 7, 2005
+ * Theme Name:   'Simple Purple'
+ * Copyright:    Vicky Pyne <dotvicky@dotvicky.net>, 2005
+ * Licence:      GNU Public License
+ *
+ * Published on SquirrelMail SourceForge tracker (#1217069).
+ * Modified by SquirrelMail developers to match documentation guidelines.
+ * Copyright (c) 2005 The SquirrelMail Project Team
+ * @package squirrelmail
+ * @subpackage themes
+ */
+
+global $color;
+$color[0]   = '#DCDCDC'; // (light gray)     TitleBar
+$color[1]   = '#800000'; // (red)
+$color[2]   = '#CC0000'; // (light red)      Warning/Error Messages
+$color[3]   = '#B6A7D5'; // (pale-purple)    Left Bar Background
+$color[4]   = '#FFFFFF'; // (white)          Normal Background
+$color[5]   = '#877C9F'; // (greyish-purple) Table Headers
+$color[6]   = '#000000'; // (black)          Text on left bar
+$color[7]   = '#663399'; // (purple)         Links
+$color[8]   = '#000000'; // (black)          Normal text
+$color[9]   = '#ABABAB'; // (mid-gray)       Darker version of #0
+$color[10]  = '#666666'; // (dark gray)      Darker version of #9
+$color[11]  = '#330066'; // (darker purple)  Special Folders color
+$color[12]  = '#EDEDED'; // (light gray)     Alternate color for message list
+$color[13]  = '#6666CC'; // (dull blue)      Color for quoted text -- > 1 quote
+$color[14]  = '#333399'; // (dark blue)      Color for quoted text -- >> 2 or more
+$color[15]  = '#9966CC'; // (grey-purple)    Unselectable folders
+?>