]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/html/streams/streams.factor
Fix conflict
[factor.git] / basis / html / streams / streams.factor
index f799d7a43828012b94a631deea71e7a643cff0bd..3207f016662c01ffd1c153b213c7e107fcd4a14e 100644 (file)
@@ -55,7 +55,7 @@ TUPLE: html-sub-stream < html-stream style parent ;
 
 : hex-color, ( color -- )
     [ red>> ] [ green>> ] [ blue>> ] tri
-    [ 255 * >fixnum >hex 2 CHAR: 0 pad-left % ] tri@ ;
+    [ 255 * >fixnum >hex 2 CHAR: 0 pad-head % ] tri@ ;
 
 : fg-css, ( color -- )
     "color: #" % hex-color, "; " % ;