diff options
author | Andrea Rossato <andrea.rossato@unibz.it> | 2008-02-10 09:30:16 +0100 |
---|---|---|
committer | Andrea Rossato <andrea.rossato@unibz.it> | 2008-02-10 09:30:16 +0100 |
commit | 5b062a3334a278b120865e41180278dd5218c891 (patch) | |
tree | 44ed47fda9cbb05cedd8ff7c3e0186a4e79ec1b5 /XMonad | |
parent | 99dbde67688a6831e29015cf017f580d059a58b5 (diff) | |
download | XMonadContrib-5b062a3334a278b120865e41180278dd5218c891.tar.gz XMonadContrib-5b062a3334a278b120865e41180278dd5218c891.tar.xz XMonadContrib-5b062a3334a278b120865e41180278dd5218c891.zip |
Themes: added robertTheme and donaldTheme
darcs-hash:20080210083016-32816-305f528fe1192335215ad5110cf9ca2606f10be2.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Util/Themes.hs | 37 |
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 = |