diff options
-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 + } + } |