diff options
author | wcfarrington <wcfarrington@gmail.com> | 2008-03-24 02:16:25 +0100 |
---|---|---|
committer | wcfarrington <wcfarrington@gmail.com> | 2008-03-24 02:16:25 +0100 |
commit | cae1163272b68d44bccbb12fd06ee9baf965a9b2 (patch) | |
tree | 2f75af65720ce9a61c0786a45e7eb47f249f80a6 | |
parent | 1f6da7a4b1894917aeec71803d993b4e7d2a8deb (diff) | |
download | XMonadContrib-cae1163272b68d44bccbb12fd06ee9baf965a9b2.tar.gz XMonadContrib-cae1163272b68d44bccbb12fd06ee9baf965a9b2.tar.xz XMonadContrib-cae1163272b68d44bccbb12fd06ee9baf965a9b2.zip |
wfarrTheme
Add a new color theme using blue and black.
darcs-hash:20080324011625-05946-c5f8ef395cb99dbda0804ae07f10ec5ea0b6b553.gz
-rw-r--r-- | XMonad/Util/Themes.hs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/XMonad/Util/Themes.hs b/XMonad/Util/Themes.hs index 540b31c..46bd8de 100644 --- a/XMonad/Util/Themes.hs +++ b/XMonad/Util/Themes.hs @@ -23,6 +23,7 @@ module XMonad.Util.Themes , deiflTheme , oxymor00nTheme , donaldTheme + , wfarrTheme , ThemeInfo (..) ) where @@ -82,6 +83,7 @@ listOfThemes = [ xmonadTheme , oxymor00nTheme , robertTheme , donaldTheme + , wfarrTheme ] -- | The default xmonad theme, by David Roundy. @@ -179,3 +181,19 @@ oxymor00nTheme = , urgentTextColor = "#63b8ff" } } + +wfarrTheme :: ThemeInfo +wfarrTheme = + newTheme { themeName = "wfarrTheme" + , themeAuthor = "Will Farrington" + , themeDescription = "A nice blue/black theme." + , theme = defaultTheme { activeColor = "#4c7899" + , inactiveColor = "#333333" + , activeBorderColor = "#285577" + , inactiveBorderColor = "#222222" + , activeTextColor = "#ffffff" + , inactiveTextColor = "#888888" + , fontName = "-*-fixed-medium-r-*--10-*-*-*-*-*-iso8859-1" + , decoHeight = 12 + } + } |