aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Util/Themes.hs
diff options
context:
space:
mode:
authorits.sec <its.sec@gmx.net>2008-02-07 22:31:00 +0100
committerits.sec <its.sec@gmx.net>2008-02-07 22:31:00 +0100
commitc740a14690d225e7686e10201cef9b821f722298 (patch)
treeb6c43cde7d09520aa765f93c54c6be0246c10871 /XMonad/Util/Themes.hs
parent8e132fc36b99d8f9132c392d81b4a714163c8e62 (diff)
downloadXMonadContrib-c740a14690d225e7686e10201cef9b821f722298.tar.gz
XMonadContrib-c740a14690d225e7686e10201cef9b821f722298.tar.xz
XMonadContrib-c740a14690d225e7686e10201cef9b821f722298.zip
oxymor00nTheme
darcs-hash:20080207213100-07ee0-46d825c3731ea3f33698ac3862408b543ec7e03e.gz
Diffstat (limited to 'XMonad/Util/Themes.hs')
-rw-r--r--XMonad/Util/Themes.hs21
1 files changed, 21 insertions, 0 deletions
diff --git a/XMonad/Util/Themes.hs b/XMonad/Util/Themes.hs
index 89f8d6f..49aa89e 100644
--- a/XMonad/Util/Themes.hs
+++ b/XMonad/Util/Themes.hs
@@ -52,6 +52,7 @@ listOfThemes :: [ThemeInfo]
listOfThemes = [ xmonadTheme
, smallClean
, deiflTheme
+ , oxymor00nTheme
]
xmonadTheme :: ThemeInfo
@@ -92,3 +93,23 @@ deiflTheme =
, decoHeight = 15
}
}
+
+oxymor00nTheme :: ThemeInfo
+oxymor00nTheme =
+ newTheme { themeName = "oxymor00nTheme"
+ , themeAuthor = "Tom Rauchenwald"
+ , themeDescription = "oxymor00n's theme"
+ , theme = defaultTheme { inactiveBorderColor = "#000"
+ , activeBorderColor = "aquamarine3"
+ , activeColor = "aquamarine3"
+ , inactiveColor = "DarkSlateGray4"
+ , inactiveTextColor = "#222"
+ , activeTextColor = "#222"
+ -- This font can be found in the package ttf-alee
+ -- on debian-systems
+ , fontName = "-*-Bandal-*-*-*-*-12-*-*-*-*-*-*-*"
+ , decoHeight = 15
+ , urgentColor = "#000"
+ , urgentTextColor = "#63b8ff"
+ }
+ }