diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.2.1
+
+* Fix background color [bug](https://github.com/psibi/tldr-hs/pull/3)
+
 # 0.2.0
 
 * Compliance with the tldr spec
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -7,8 +7,7 @@
 ## Installation
 
 1. [Install stack](https://docs.haskellstack.org/en/stable/README/#how-to-install)
-2. Clone this repo  (TODO: Publish this to Stackage)
-3. `stack install`
+2. `stack install --resolver=nightly tldr`
 
 ## Usage
 
diff --git a/src/Tldr.hs b/src/Tldr.hs
--- a/src/Tldr.hs
+++ b/src/Tldr.hs
@@ -24,7 +24,6 @@
   , fgIntensity :: ColorIntensity
   , fgColor :: Color
   , bgIntensity :: ColorIntensity
-  , bgColor :: Color
   , consoleIntensity :: ConsoleIntensity
   }
 
@@ -37,7 +36,6 @@
   , fgIntensity = Dull
   , fgColor = White
   , bgIntensity = Dull
-  , bgColor = Black
   , consoleIntensity = NormalIntensity
   }
 
@@ -54,7 +52,6 @@
   , SetUnderlining (underline cons)
   , SetBlinkSpeed (blink cons)
   , SetColor Foreground (fgIntensity cons) (fgColor cons)
-  , SetColor Background (bgIntensity cons) (bgColor cons)
   ]
 
 renderNode :: NodeType -> IO ()
diff --git a/tldr.cabal b/tldr.cabal
--- a/tldr.cabal
+++ b/tldr.cabal
@@ -1,5 +1,5 @@
 name:                tldr
-version:             0.2.0
+version:             0.2.1
 synopsis:            Haskell tldr client
 description:         Haskell tldr client with support for updating and viewing tldr pages.
 homepage:            https://github.com/psibi/tldr-hs#readme
