diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-06-09 19:31:34 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-06-09 19:31:34 +0000 |
commit | 959b77c3fa9b602cf50722c0c2b5aa2c08b59e99 (patch) | |
tree | a66836f1668cf51e6c9d307e0a507196a18b662a /themes/example/example.theme | |
parent | 0e2fc70e3da74596b30b83832ae8dd0260154674 (diff) | |
download | brdo-959b77c3fa9b602cf50722c0c2b5aa2c08b59e99.tar.gz brdo-959b77c3fa9b602cf50722c0c2b5aa2c08b59e99.tar.bz2 |
- Added $theme->foreground and $theme->background vars to provide some general usable colors outside of a theme.
- Updated poll.module to use the new $theme color variables
Diffstat (limited to 'themes/example/example.theme')
-rw-r--r-- | themes/example/example.theme | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/themes/example/example.theme b/themes/example/example.theme index b09563474..20e567173 100644 --- a/themes/example/example.theme +++ b/themes/example/example.theme @@ -10,6 +10,9 @@ *********************************************************************/ class Theme { + // General colorset that can be used for this theme + var $foreground = "#000000"; + var $background = "#FFFFFF"; function header() { ?> |