From 8b9bb44bbf864a63c2eece6744fc40240877b0c6 Mon Sep 17 00:00:00 2001
From: Francois Zaninotto <fzaninotto@gmail.com>
Date: Mon, 8 Jul 2013 11:31:33 +0200
Subject: [PATCH] Fix hexColor provider bug generating too short hex code

---
 src/Faker/Provider/Color.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Faker/Provider/Color.php b/src/Faker/Provider/Color.php
index 468aa4c0..16aa9934 100644
--- a/src/Faker/Provider/Color.php
+++ b/src/Faker/Provider/Color.php
@@ -47,7 +47,7 @@ class Color extends Base
      */
     public static function hexColor()
     {
-        return '#' . dechex(mt_rand(1, 16777215));
+        return '#' . str_pad(dechex(mt_rand(1, 16777215)), 6, '0', STR_PAD_LEFT);
     }
 
     /**