adding Bluesome theme (#1188209).
authortokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 29 Jun 2005 14:56:52 +0000 (14:56 +0000)
committertokul <tokul@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Wed, 29 Jun 2005 14:56:52 +0000 (14:56 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@9689 7612ce4b-ef26-0410-bec9-ea0150e637f0

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

index da5cdd993529a2160f15477b816ddc63dc1f48a5..e8ffcdc290ec4fa7cc33257100aee216a262bd3a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -380,6 +380,7 @@ Version 1.5.1 -- CVS
     password box if username was supplied as a url arg (#1222617).
   - Fix variable typo in parseFetch which caused IMAP errors on Exchange.
     Thanks Christian Froemmel.
+  - Added Bluesome theme by Saku Lehtiö (#1188209).
 
 Version 1.5.0 - 2 February 2004
 -------------------------------
index f564b4cf9fd9d70d55bc95e2e115ae2a94957e43..b31856a6ddb1ae565974cec063a96c8e2c7b2f17 100644 (file)
@@ -742,6 +742,9 @@ $theme[39]['NAME'] = 'Simple Green';
 $theme[40]['PATH'] = SM_PATH . 'themes/wood_theme.php';
 $theme[40]['NAME'] = 'Wood';
 
+$theme[41]['PATH'] = SM_PATH . 'themes/bluesome.php';
+$theme[41]['NAME'] = 'Bluesome';
+
 /**
  * LDAP server(s)
  *   Array of arrays with LDAP server parameters. See
diff --git a/themes/bluesome.php b/themes/bluesome.php
new file mode 100644 (file)
index 0000000..cbcff0b
--- /dev/null
@@ -0,0 +1,33 @@
+<?php
+/**
+ *    Theme Name: Bluesome Theme
+ *    Author:     Saku Lehtiö
+ *    Date:       April 22, 2005
+ *
+ * Copyright (c) 2005 Saku Lehtiö
+ * Published on SquirrelMail SourceForge tracker (#1188209).
+ * Modified by SquirrelMail developers to match documentation guidelines.
+ * Copyright (c) 2005 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ * @package squirrelmail
+ * @subpackage themes
+ */
+
+global $color;
+$color[0]   = '#9DB5CB';
+$color[1]   = '#800000';
+$color[2]   = '#CC0000';
+$color[3]   = '#5B6177';
+$color[4]   = '#CBD2D9';
+$color[5]   = '#597D9D';
+$color[6]   = '#CCCCCC';
+$color[7]   = '#333333';
+$color[8]   = '#333333';
+$color[9]   = '#597D9D';
+$color[10]  = '#FFFFFF';
+$color[11]  = '#CCCCCC';
+$color[12]  = '#9DB5CB';
+$color[13]  = '#800000';
+$color[14]  = '#FF0000';
+$color[15]  = '#CCCCCC';
+?>
\ No newline at end of file