Ver Fonte

Added new forest theme

Luke Ehresman há 25 anos atrás
pai
commit
91063bfcc3
2 ficheiros alterados com 24 adições e 0 exclusões
  1. 3 0
      config/config.php
  2. 21 0
      config/forest_theme.php

+ 3 - 0
config/config.php

@@ -54,6 +54,9 @@
     $theme[4]["PATH"] = "../config/purple_theme.php";
     $theme[4]["NAME"] = "Purple";
 
+    $theme[5]["PATH"] = "../config/forest_theme.php";
+    $theme[5]["NAME"] = "Forest";
+
 //  Whether or not to use a special color for special folders.  If not, special
 //  folders will be the same color as the other folders
     $use_special_folder_color = true;

+ 21 - 0
config/forest_theme.php

@@ -0,0 +1,21 @@
+<?
+   /** Author:       Luke Ehresman
+       Date:         January 7, 2000
+       Theme Name:   "Forest Theme"
+
+       This theme uses Forest-ish colors (mostly green)
+    **/
+
+    $color[0]   = "9EBFA7"; // (light purp)     TitleBar
+    $color[1]   = "800000"; // (red)
+    $color[2]   = "CC0000"; // (light red)      Warning/Error Messages
+    $color[3]   = "244B30"; // (purple)         Left Bar Background
+    $color[4]   = "DEFFE7"; // (light purple)   Normal Background
+    $color[5]   = "B6D7BF"; // (darker gray)    Table Headers
+    $color[6]   = "DDFFDD"; // (black)          Text on left bar
+    $color[7]   = "3C7F50"; // (light purple)   Links
+    $color[8]   = "000000"; // (black)          Normal text
+    $color[9]   = "7E9F87"; // (mid purp)       Darker version of #0
+    $color[10]  = "5E7F67"; // (dark purp)      Darker version of #9
+    $color[11]  = "4A9B62"; // (dark red)       Special Folders color
+?>