diff --git a/fortytwo.cabal b/fortytwo.cabal
--- a/fortytwo.cabal
+++ b/fortytwo.cabal
@@ -1,5 +1,5 @@
 name:                fortytwo
-version:1.0.0
+version:1.0.1
 synopsis:            Interactive terminal prompt
 description:         List of Prompt helpers to pimp the UIs of your haskell programs
 homepage:            https://github.com/gianlucaguarini/fortytwo#readme
diff --git a/src/FortyTwo/Renderers/Question.hs b/src/FortyTwo/Renderers/Question.hs
--- a/src/FortyTwo/Renderers/Question.hs
+++ b/src/FortyTwo/Renderers/Question.hs
@@ -14,7 +14,6 @@
       putStr message
       setSGR [Reset]
   | messageType == Answer = do
-      setSGR [SetConsoleIntensity BoldIntensity]
       setSGR [SetColor Foreground Dull Cyan]
       putStr $ " " ++ message
       setSGR [Reset]
diff --git a/src/FortyTwo/Utils.hs b/src/FortyTwo/Utils.hs
--- a/src/FortyTwo/Utils.hs
+++ b/src/FortyTwo/Utils.hs
@@ -6,6 +6,7 @@
 import System.IO (hSetBuffering, hFlush, hSetEcho, hReady, stdin, stdout, BufferMode(..))
 import Data.List (findIndex, findIndices, elemIndex, intercalate)
 import Control.Monad (when)
+import Control.Applicative ((<$>))
 import Data.Maybe (fromJust)
 import FortyTwo.Types(Option(..), Options)
 import FortyTwo.Constants (emptyString)
