This parser correctly identifies an atword, but it stringifies it without the @.
parseValue('@color').parse().toString(); // returns "color"
parseValue('foo @color').parse().toString(); // returns "foo color"
parseValue('foo @color bar').parse().toString(); // returns "foo color bar"