Skip to content

Commit

Permalink
Fix background colors
Browse files Browse the repository at this point in the history
  • Loading branch information
alx741 committed May 2, 2017
1 parent c160895 commit d775aaa
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/Tldr.hs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ data ConsoleSetting = ConsoleSetting
, fgIntensity :: ColorIntensity
, fgColor :: Color
, bgIntensity :: ColorIntensity
, bgColor :: Color
, consoleIntensity :: ConsoleIntensity
}

Expand All @@ -37,7 +36,6 @@ defConsoleSetting =
, fgIntensity = Dull
, fgColor = White
, bgIntensity = Dull
, bgColor = Black
, consoleIntensity = NormalIntensity
}

Expand All @@ -54,7 +52,6 @@ toSGR cons =
, SetUnderlining (underline cons)
, SetBlinkSpeed (blink cons)
, SetColor Foreground (fgIntensity cons) (fgColor cons)
, SetColor Background (bgIntensity cons) (bgColor cons)
]

renderNode :: NodeType -> IO ()
Expand Down

0 comments on commit d775aaa

Please sign in to comment.