From c8ba5c1349fd66a37e346ddb99c473a4dfec823f Mon Sep 17 00:00:00 2001 From: Karl 'vollmerk' Vollmer Date: Fri, 10 Jun 2005 07:22:55 +0000 Subject: Initial Commit of all current themes --- contrib/themes/borders/images/ampache.gif | Bin 0 -> 3136 bytes contrib/themes/borders/images/blankalbum.gif | Bin 0 -> 1437 bytes contrib/themes/borders/readme.txt | 21 ++ contrib/themes/borders/templates/style.inc | 369 +++++++++++++++++++++++++++ contrib/themes/borders/theme.cfg.php | 71 ++++++ 5 files changed, 461 insertions(+) create mode 100755 contrib/themes/borders/images/ampache.gif create mode 100644 contrib/themes/borders/images/blankalbum.gif create mode 100644 contrib/themes/borders/readme.txt create mode 100644 contrib/themes/borders/templates/style.inc create mode 100644 contrib/themes/borders/theme.cfg.php (limited to 'contrib/themes/borders') diff --git a/contrib/themes/borders/images/ampache.gif b/contrib/themes/borders/images/ampache.gif new file mode 100755 index 00000000..6d14b699 Binary files /dev/null and b/contrib/themes/borders/images/ampache.gif differ diff --git a/contrib/themes/borders/images/blankalbum.gif b/contrib/themes/borders/images/blankalbum.gif new file mode 100644 index 00000000..a83219d8 Binary files /dev/null and b/contrib/themes/borders/images/blankalbum.gif differ diff --git a/contrib/themes/borders/readme.txt b/contrib/themes/borders/readme.txt new file mode 100644 index 00000000..19bc64ba --- /dev/null +++ b/contrib/themes/borders/readme.txt @@ -0,0 +1,21 @@ + This ampache theme does not use any graphics in generating the backgrounds, so the colors can be changed to +whatever you want. The main feature of this theme is the borders. The borders can easily be customized at the +top of themes/borders/templates/style.inc. There is a primary border around all the boxes, and a relief line across +the top and the left side. + + This them will overide your font with "Comic Sans MS". This can be disabled in the top of the file +themes/borders/templates/style.inc. It also tells you how to get this font in linux. + + This theme was created against svn 577 + +Issues + +1. If you use black (or something real dark) as a color; + If you set your background (bg_color1) to black, some of the text wont be readable, especially on mouseover. + If your background is black you will lose the shading and some text on themes/borders/images/ampache.gif. + this is the image at the top of the page. + If you set most frames (row_color3) to black, you should replace themes/borders/images/blankalbum.gif + + + +If you have any questions, bugs or improvements, give me a holler. randyperkins@randyperkins.com diff --git a/contrib/themes/borders/templates/style.inc b/contrib/themes/borders/templates/style.inc new file mode 100644 index 00000000..f5b66e5d --- /dev/null +++ b/contrib/themes/borders/templates/style.inc @@ -0,0 +1,369 @@ + + diff --git a/contrib/themes/borders/theme.cfg.php b/contrib/themes/borders/theme.cfg.php new file mode 100644 index 00000000..6e7a0d95 --- /dev/null +++ b/contrib/themes/borders/theme.cfg.php @@ -0,0 +1,71 @@ +################## +## +################## + +########################### +# Classic Ampache Theme +########################### + +# Theme Name +# This is the actual name of the theme that +# will be displayed in the preferences screen +# DEFAULT: ampache-theme +name = "Borders" + +# Theme Author +# This is just a way of giving credit to the +# person who actually created this theme +# DEFAULT: N/A +author = "Randy Perkins" + +# Theme Maintainer +# This is just a way of listing who is responsible for +# maintaining this theme incase it's not working right +# please include an e-mail address so you can be contacted +# DEFAULT: N/A +maintainer = "Randy Perkins " + +# Theme Colors +################### +[color] +################### +# Below is a list of the default colors for this theme, upon +# applying this theme the users color preferences will be reset +# to what is listed below... + +# Background Color 1 +bg_color1 = "#06c7ee" + +# Background Color 2 +bg_color2 = "#ef9494" + +# Base Color 1 +base_color1 = "#aab3ff" + +# Base Color 2 +base_color2 = "#f0b3b3" + +# Font Color 1 +font_color1 = "#0000ee" + + +# Font Color 2 +font_color2 = "#000000" + +# Font Color 3 +font_color3 = "#551a8b" + +# Row Color 1 +# this is used in style.css in .headrow but .headrow is not used +# i am going to use it as a border color +row_color1 = "#ef4f4f" + +# Row Color 2 +row_color2 = "#e1afaf" + +# Row Color 3 +row_color3 = "#f9c1c1" + +# Error Color +error_color = "#990033" + -- cgit