word-style ( word -- style )
Prettyprinter stylesheet
Next:string-style ( str -- style )


Vocabulary
prettyprint.stylesheet

Inputs and outputs
worda word
stylea style assoc


Word description
The stylesheet for word names

Definition
IN: prettyprint.stylesheet

GENERIC: word-style ( word -- style )


Methods
USING: assocs colors generic hashtables io.styles kernel
prettyprint.stylesheet prettyprint.stylesheet.private ;

M: highlighted-word word-style
M\ highlighted-word word-style (call-next-method) T{ rgba
{ red 0.1843137254901961 }
{ green 0.3098039215686275 }
{ blue 0.3098039215686275 }
{ alpha 1.0 }
} foreground associate swap assoc-union ;


USING: assocs hashtables io.styles kernel
prettyprint.stylesheet words ;

M: word word-style
[ presented associate ]
[ "word-style" word-prop >hashtable ] bi assoc-union ;