From f9bb7edf3d64db4a39a495b9f60a7059a94001a5 Mon Sep 17 00:00:00 2001 From: Keith Lazuka Date: Mon, 21 Sep 2009 15:38:55 -0400 Subject: [PATCH] prettyprint.stylesheet: stack effect highlighting is now a darker green --- basis/prettyprint/stylesheet/stylesheet.factor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/basis/prettyprint/stylesheet/stylesheet.factor b/basis/prettyprint/stylesheet/stylesheet.factor index a593f23d99..580049160d 100644 --- a/basis/prettyprint/stylesheet/stylesheet.factor +++ b/basis/prettyprint/stylesheet/stylesheet.factor @@ -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 colored-presentation-style + { { font-style plain } } assoc-union ;