diff --git a/hvega-theme.cabal b/hvega-theme.cabal
--- a/hvega-theme.cabal
+++ b/hvega-theme.cabal
@@ -1,5 +1,5 @@
 name:                hvega-theme
-version:             0.2.0.4
+version:             0.2.0.5
 synopsis:            Theme for hvega.
 description:         A professional theme for publication quality figures.
 homepage:            http://github.com/GregorySchwartz/hvega-theme#readme
diff --git a/src/Graphics/Vega/VegaLite/Theme.hs b/src/Graphics/Vega/VegaLite/Theme.hs
--- a/src/Graphics/Vega/VegaLite/Theme.hs
+++ b/src/Graphics/Vega/VegaLite/Theme.hs
@@ -20,6 +20,7 @@
 -- Local
 
 data Config = Config { configFontSize :: Maybe Double
+                     , configTitleFontSize :: Maybe Double
                      , configFont :: T.Text
                      , configLabelFont :: T.Text
                      , configAxisColor :: T.Text
@@ -30,6 +31,7 @@
 
 defaultConfig :: Config
 defaultConfig = Config { configFontSize = Nothing
+                       , configTitleFontSize = Nothing
                        , configFont = "Arial"
                        , configLabelFont = "Arial"
                        , configAxisColor = "#000000"
@@ -57,12 +59,12 @@
 legendConfig :: Config -> [LegendConfig]
 legendConfig c = catMaybes
                    [ fmap LeLabelFontSize $ configFontSize c
-                   , fmap LeTitleFontSize $ configFontSize c
+                   , fmap LeTitleFontSize $ configTitleFontSize c
                    ]
 
 titleConfig :: Config -> [TitleConfig]
 titleConfig c = catMaybes
-                  [ fmap TFontSize $ configFontSize c
+                  [ fmap TFontSize $ configTitleFontSize c
                   , Just $ TFont $ configFont c
                   , Just $ TColor "#000000"
                   , Just $ TFontWeight Normal
@@ -77,6 +79,6 @@
                  , fmap LabelAngle $ configLabelAngle c
                  , Just $ TickColor $ configAxisColor c
                  , Just $ TitleFont $ configFont c
-                 , fmap TitleFontSize $ configFontSize c
+                 , fmap TitleFontSize $ configTitleFontSize c
                  , Just $ TitleFontWeight Normal
                  ]
