From 6e69c1ba2d33f6a576534fc6d05a66cb1554c7d0 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Sun, 30 Oct 2005 20:33:21 +0100 Subject: CSS replacement support Template authors now can use placeholders in their stylesheets which will be replaced by the central CSS dispatcher. Placeholders and their replacements are defined in a style.ini file in the Template directory. This makes changing a colorset very easy. darcs-hash:20051030193321-7ad00-bc66f405fd2e2b18cfcc5dc28feef04671eb6558.gz --- lib/tpl/default/style.ini | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 lib/tpl/default/style.ini (limited to 'lib/tpl/default/style.ini') diff --git a/lib/tpl/default/style.ini b/lib/tpl/default/style.ini new file mode 100644 index 000000000..f5f10d0a4 --- /dev/null +++ b/lib/tpl/default/style.ini @@ -0,0 +1,28 @@ +; This file is used to configure some placeholder values used in +; the stylesheets. Changing this file is the simplest method to +; give your wiki a new look. +; +; Please see http://www.php.net/manual/en/function.parse-ini-file.php +; for limitations of the ini format used here + +; various shades of gray, mainly used for backgrounds and texts +__white__ = "#fff" +__lightgray__ = "#f5f5f5" +__mediumgray__ = "#ccc" +__darkgray__ = "#666" +__black__ = "#000" + +; these are the shades of blue +__lighter__ = "#f7f9fa" +__light__ = "#eef3f8" +__medium__ = "#dee7ec" +__dark__ = "#8cacbb" +__darker__ = "#638c9c" + +; these are used for links +__extern__ = "#436976" +__existing__ = "#090" +__missing__ = "#f30" + +; highlighting search snippets +__highlight__ = "#ff9" -- cgit v1.2.3