]> gitweb.factorcode.org Git - factor.git/commitdiff
prettyprint.stylesheet: stack effect highlighting is now a darker green
authorKeith Lazuka <klazuka@gmail.com>
Mon, 21 Sep 2009 19:38:55 +0000 (15:38 -0400)
committerKeith Lazuka <klazuka@gmail.com>
Mon, 21 Sep 2009 19:38:55 +0000 (15:38 -0400)
basis/prettyprint/stylesheet/stylesheet.factor

index a593f23d992b6c1349a51d7ba38a844bbf7a83b9..580049160db93c136d0ca3789c8a940004dd506b 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2009 Keith Lazuka.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: assocs colors.constants combinators
+USING: assocs colors colors.constants combinators
 combinators.short-circuit hashtables io.styles kernel literals
 namespaces sequences words words.symbol ;
 IN: prettyprint.stylesheet
@@ -43,4 +43,5 @@ PRIVATE>
     dim-color colored-presentation-style ;
 
 : effect-style ( effect -- style )
-    COLOR: DarkGreen colored-presentation-style ;
+    0 0.2 0 1 <rgba> colored-presentation-style
+    { { font-style plain } } assoc-union ;