diff options
author | Raúl Benencia <rul@kalgan.cc> | 2013-08-28 11:28:38 -0300 |
---|---|---|
committer | Raúl Benencia <rul@kalgan.cc> | 2013-08-28 11:28:38 -0300 |
commit | 470b88d719fb6e740569c8e35affa0db6d3ed7fd (patch) | |
tree | e44d0cb2374e33625148b02c6b51e599a83a4832 /Config.hs | |
parent | 77112dd4cd7657ebf16734d117d42283ee34c742 (diff) |
Colorful header
Diffstat (limited to 'Config.hs')
-rw-r--r-- | Config.hs | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -16,6 +16,7 @@ data LazymailConfig = LazymailConfig { baseColor :: (Color, Color) -- (foreground, background) , selectionColor :: (Color, Color) , statusBarColor :: (Color, Color) + , headerColor :: (Color, Color) , showStatusBar :: Bool , initialPath :: FilePath , filterMaildirsHook :: [FilePath] -> IO [FilePath] @@ -25,6 +26,7 @@ defaultConfig = LazymailConfig { baseColor = (ColorWhite, ColorBlack) , selectionColor = (ColorYellow, ColorBlack) , statusBarColor = (ColorYellow, ColorBlack) + , headerColor = (ColorYellow, ColorBlack) , showStatusBar = True , initialPath = "" , filterMaildirsHook = \mds -> return mds |