diff --git a/dataflow.cabal b/dataflow.cabal
--- a/dataflow.cabal
+++ b/dataflow.cabal
@@ -1,5 +1,5 @@
 name:                dataflow
-version:             0.3.0.0
+version:             0.3.1.0
 synopsis:            Generate Graphviz documents from a Haskell representation.
 description:         Outputs .dot files that can be processed by the dot
                      command. Currently it only supports the DFD format.
diff --git a/src/DataFlow/DFD.hs b/src/DataFlow/DFD.hs
--- a/src/DataFlow/DFD.hs
+++ b/src/DataFlow/DFD.hs
@@ -20,7 +20,9 @@
     withIndent $ do
       mapM_ dfd objects
       blank
-      label $ bold $ write name
+      writeln "fontsize = 10;"
+      writeln "fontcolor = gray25;"
+      label $ write name
       writeln "graph[style = dashed];"
     writeln "}"
 
