aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"
+ }
+ }