We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c160895 commit d775aaaCopy full SHA for d775aaa
1 file changed
src/Tldr.hs
@@ -24,7 +24,6 @@ data ConsoleSetting = ConsoleSetting
24
, fgIntensity :: ColorIntensity
25
, fgColor :: Color
26
, bgIntensity :: ColorIntensity
27
- , bgColor :: Color
28
, consoleIntensity :: ConsoleIntensity
29
}
30
@@ -37,7 +36,6 @@ defConsoleSetting =
37
36
, fgIntensity = Dull
38
, fgColor = White
39
, bgIntensity = Dull
40
- , bgColor = Black
41
, consoleIntensity = NormalIntensity
42
43
@@ -54,7 +52,6 @@ toSGR cons =
54
52
, SetUnderlining (underline cons)
55
53
, SetBlinkSpeed (blink cons)
56
, SetColor Foreground (fgIntensity cons) (fgColor cons)
57
- , SetColor Background (bgIntensity cons) (bgColor cons)
58
]
59
60
renderNode :: NodeType -> IO ()
0 commit comments