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


Vocabulary
prettyprint.stylesheet

Inputs and outputs
stra string
stylea style assoc


Word description
The stylesheet for string literals

Definition
USING: colors prettyprint.stylesheet.private ;

IN: prettyprint.stylesheet

: string-style ( str -- style )
T{ rgba
{ red 0.5450980392156862 }
{ green 0.3411764705882353 }
{ blue 0.2588235294117647 }
{ alpha 1.0 }
} colored-presentation-style ;