aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Util/Themes.hs
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad/Util/Themes.hs')
-rw-r--r--XMonad/Util/Themes.hs37
1 files changed, 37 insertions, 0 deletions
diff --git a/XMonad/Util/Themes.hs b/XMonad/Util/Themes.hs
index 0d20e52..fab0f5b 100644
--- a/XMonad/Util/Themes.hs
+++ b/XMonad/Util/Themes.hs
@@ -18,8 +18,10 @@ module XMonad.Util.Themes
listOfThemes
, xmonadTheme
, smallClean
+ , robertTheme
, deiflTheme
, oxymor00nTheme
+ , donaldTheme
, ThemeInfo (..)
) where
@@ -71,6 +73,8 @@ listOfThemes = [ xmonadTheme
, smallClean
, deiflTheme
, oxymor00nTheme
+ , robertTheme
+ , donaldTheme
]
-- | The default xmonad theme, by David Roundy.
@@ -98,6 +102,39 @@ smallClean =
}
}
+-- | Don's prefered colors - fomr DynamicLog...;)
+donaldTheme :: ThemeInfo
+donaldTheme =
+ newTheme { themeName = "donaldTheme"
+ , themeAuthor = "Andrea Rossato"
+ , themeDescription = "Don's prefered colors - fomr DynamicLog...;)"
+ , theme = defaultTheme { activeColor = "#2b4f98"
+ , inactiveColor = "#cccccc"
+ , activeBorderColor = "#2b4f98"
+ , inactiveBorderColor = "#cccccc"
+ , activeTextColor = "white"
+ , inactiveTextColor = "black"
+ , decoHeight = 16
+ }
+ }
+
+-- | Ffrom Robert Manea's prompt theme.
+robertTheme :: ThemeInfo
+robertTheme =
+ newTheme { themeName = "robertTheme"
+ , themeAuthor = "Andrea Rossato"
+ , themeDescription = "From Robert Manea's prompt theme"
+ , theme = defaultTheme { activeColor = "#aecf96"
+ , inactiveColor = "#111111"
+ , activeBorderColor = "#aecf96"
+ , inactiveBorderColor = "#111111"
+ , activeTextColor = "black"
+ , inactiveTextColor = "#d5d3a7"
+ , fontName = "-*-profont-*-*-*-*-11-*-*-*-*-*-iso8859"
+ , decoHeight = 16
+ }
+ }
+
-- | deifl\'s Theme, by deifl.
deiflTheme :: ThemeInfo
deiflTheme =