HEXCOLOR:
HEX colors
Prev:rgba>hex ( rgba -- hex )


Vocabulary
colors.hex

Syntax
HEXCOLOR: value


Word description
Parses as a color object with the given hexadecimal value.

Examples
USING: colors.hex io.styles ; "Hello!" { { foreground HEXCOLOR: 336699 } } format nl


Definition
USING: lexer sequences ;

IN: colors.hex

SYNTAX: HEXCOLOR: scan-token hex>rgba suffix! ;