Vocabularyio.
stylesWord descriptionCharacter style. Font family named by a string.
ExamplesThis example outputs some different font sizes:
USING: hashtables io io.styles kernel sequences ;
{ "monospace" "serif" "sans-serif" }
[ dup font-name associate format nl ] each
Definition