ui: register: positive amounts: green -> black

The green/red scheme helped distinguish the changes column from the
black/red balance column, but the default green is hard to read on
the pale background in some terminals. Less is more. Also the changes
column is non-bold now.
This commit is contained in:
Simon Michael 2018-10-23 07:40:06 -07:00
parent 7ebf3a276b
commit 119e1e3a49

View File

@ -84,9 +84,9 @@ themesList = [
-- ,("list" , black `on` white)
-- ,("list" <> "amount" , currentAttr)
,("list" <> "amount" <> "decrease" , fg red)
,("list" <> "amount" <> "increase" , fg green)
-- ,("list" <> "amount" <> "increase" , fg green)
,("list" <> "amount" <> "decrease" <> "selected" , red `on` selectbg & bold)
,("list" <> "amount" <> "increase" <> "selected" , green `on` selectbg & bold)
-- ,("list" <> "amount" <> "increase" <> "selected" , green `on` selectbg & bold)
,("list" <> "balance" , currentAttr & bold)
,("list" <> "balance" <> "negative" , fg red)
,("list" <> "balance" <> "positive" , fg black)