@@ -72,7 +72,7 @@ active8 = fg (Color240 (255 - 16)) & bold
72
72
-- we use reverseVideo here to have a legible fallback if the terminal does
73
73
-- not support the colors (and falls back to black/white)
74
74
select8 = yellow8 `on` black8 & reverseVideo
75
- moo = yellow8 `on` red8 & reverseVideo -- & bold
75
+ selectNeg = yellow8 `on` red8 & reverseVideo -- & bold
76
76
77
77
themesList :: [(String , AttrMap )]
78
78
themesList = [
@@ -91,11 +91,11 @@ themesList = [
91
91
, (attrName " help" <> attrName " heading" , fg yellow8)
92
92
, (attrName " help" <> attrName " key" , active8)
93
93
, (attrName " list" <> attrName " amount" <> attrName " decrease" , fg red8)
94
- , (attrName " list" <> attrName " amount" <> attrName " decrease" <> attrName " selected" , moo )
94
+ , (attrName " list" <> attrName " amount" <> attrName " decrease" <> attrName " selected" , selectNeg )
95
95
, (attrName " list" <> attrName " balance" , currentAttr & bold)
96
96
, (attrName " list" <> attrName " balance" <> attrName " negative" , fg red8)
97
97
, (attrName " list" <> attrName " balance" <> attrName " positive" , fg black8)
98
- , (attrName " list" <> attrName " balance" <> attrName " negative" <> attrName " selected" , moo )
98
+ , (attrName " list" <> attrName " balance" <> attrName " negative" <> attrName " selected" , selectNeg )
99
99
, (attrName " list" <> attrName " balance" <> attrName " positive" <> attrName " selected" , select8)
100
100
, (attrName " list" <> attrName " selected" , select8)
101
101
])
0 commit comments