diff --git a/blaze-shields.cabal b/blaze-shields.cabal
--- a/blaze-shields.cabal
+++ b/blaze-shields.cabal
@@ -1,5 +1,5 @@
 name: blaze-shields
-version: 0.1.1.2
+version: 0.1.1.11
 synopsis: create svg by Haskell
 description: a Haskell version of shields ,which is on github.
 homepage: http://githubcom/Qinka/blaze-shields
diff --git a/lib/Text/Blaze/Svg/Shields.hs b/lib/Text/Blaze/Svg/Shields.hs
--- a/lib/Text/Blaze/Svg/Shields.hs
+++ b/lib/Text/Blaze/Svg/Shields.hs
@@ -65,8 +65,8 @@
             text_ ! x (show $ lp+rp/2+13) ! y "14" ! fill "#010101" ! fillOpacity "0.3" $ toHtml r
             text_ ! x (show $ lp+rp/2+13) ! y "13" $ toHtml r
         where
-          colorA = stringValue $ fromMaybe "#555" cA
-          colorB = stringValue $ fromMaybe "#4c1" cB
+          colorA = stringValue $ ('#':) $ fromMaybe "555" cA
+          colorB = stringValue $ ('#':) $ fromMaybe "#4c1" cB
 
       flatStyle ::(Show a,ToMarkup a,Show b,Floating b)=> (a,b)        --left
                                                    -> (a,b)        --right
@@ -89,8 +89,8 @@
             text_ ! x (show $ lp +rp/2+13) ! y "14"  ! fill "#010101" ! fillOpacity ".3" $ toHtml r
             text_ ! x (show $ lp +rp/2+13) ! y "14"  $ toHtml r
         where
-          colorA = stringValue $ fromMaybe "#555" cA
-          colorB = stringValue $ fromMaybe "#4c1" cB
+          colorA = stringValue $ ('#':) $ fromMaybe "555" cA
+          colorB = stringValue $ ('#':) $ fromMaybe "#4c1" cB
 
 
 
@@ -108,8 +108,8 @@
           text_ ! x (show $ lp/2+7) !y "14" $ toHtml l
           text_ ! x (show $ lp+rp/2+13) !y "14" $ toHtml r
         where
-          colorA = stringValue $ fromMaybe "#555" cA
-          colorB = stringValue $ fromMaybe "#4c1" cB
+          colorA = stringValue $ ('#':) $ fromMaybe "555" cA
+          colorB = stringValue $ ('#':) $ fromMaybe "#4c1" cB
       socialStyle ::(Show a,ToMarkup a,Show b,Floating b)=> (a,b)        --left
                                                      -> (a,b)        --right
                                                      -> Maybe String --logo-url
