! Copyright (C) 2013 John Benediktsson ! See https://factorcode.org/license.txt for BSD license USING: colors.private grouping hex-strings kernel lexer math sequences splitting ; IN: colors.flex-hex : flex-hex ( str -- hex ) "#" ?head drop hex-only three-groups hex-rgb "" join ; : flex-hex>rgba ( str -- rgba ) flex-hex hex>rgba ; SYNTAX: FLEXHEXCOLOR: scan-token flex-hex>rgba suffix! ;