diff --git a/share/goodie/rgb_color/content.handlebars b/share/goodie/rgb_color/content.handlebars
index cbbed4df7..a75ad04a3 100644
--- a/share/goodie/rgb_color/content.handlebars
+++ b/share/goodie/rgb_color/content.handlebars
@@ -1,6 +1 @@
-
-{{result_color}}
-■
-
-
+{{{color result_color}}}
diff --git a/share/goodie/rgb_color/rgb_color.js b/share/goodie/rgb_color/rgb_color.js
new file mode 100644
index 000000000..11865ce50
--- /dev/null
+++ b/share/goodie/rgb_color/rgb_color.js
@@ -0,0 +1,4 @@
+Handlebars.registerHelper('color', function(hex) {
+ return hex + ' ■';
+});