diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.2.0
+
+- `AnsiPretty` for other types in `time`
+
 # 0.1.1.0
 
 - Accept `generics-sop-0.2`
diff --git a/ansi-pretty.cabal b/ansi-pretty.cabal
--- a/ansi-pretty.cabal
+++ b/ansi-pretty.cabal
@@ -1,9 +1,9 @@
--- This file has been generated from package.yaml by hpack version 0.8.0.
+-- This file has been generated from package.yaml by hpack version 0.9.0.
 --
 -- see: https://github.com/sol/hpack
 
 name:           ansi-pretty
-version:        0.1.1.0
+version:        0.1.2.0
 synopsis:       AnsiPretty for ansi-wl-pprint
 description:    'AnsiPretty' type class, more colorful than 'Pretty'.
 category:       Web
diff --git a/src/Text/PrettyPrint/ANSI/Leijen/AnsiPretty.hs b/src/Text/PrettyPrint/ANSI/Leijen/AnsiPretty.hs
--- a/src/Text/PrettyPrint/ANSI/Leijen/AnsiPretty.hs
+++ b/src/Text/PrettyPrint/ANSI/Leijen/AnsiPretty.hs
@@ -288,6 +288,14 @@
 
 -- time
 instance AnsiPretty Time.UTCTime where ansiPretty = ansiPretty . show
+instance AnsiPretty Time.Day where ansiPretty = ansiPretty . show
+instance AnsiPretty Time.TimeZone where ansiPretty = ansiPretty . show
+instance AnsiPretty Time.TimeOfDay where ansiPretty = ansiPretty . show
+instance AnsiPretty Time.LocalTime where ansiPretty = ansiPretty . show
+instance AnsiPretty Time.ZonedTime where ansiPretty = ansiPretty . show
+-- instance AnsiPretty Time.UniversalTime where ansiPretty = ansiPretty . show
+instance AnsiPretty Time.DiffTime where ansiPretty = ansiPretty . show
+instance AnsiPretty Time.NominalDiffTime where ansiPretty = ansiPretty . show
 
 -- vector
 instance AnsiPretty a => AnsiPretty (V.Vector a) where ansiPretty = ansiPrettyNewtype "Vector" . V.toList
