Default XML tag color

This below script is taken from the Adobe InDesign CS4 Scripting Guide: AppleScript.
Is it just me, or does setting the color not work as noted in the script?
(and btw, the typo in the comment was also in the documentation)
It is not a major concern, but I do wonder if the tag can be attributed a color, it would be nice.

tell application "Adobe InDesign CS4"
	set myDocument to make document
	tell myDocument
		--You can create an XML tag without specifying a color for the tag.
		set myXMLTagA to make XML tag with properties {name:"XML_tag_A"}
		--You can define the highlight oclor o fthe XML tag.
		set myXMLTagB to make XML tag with properties {name:"XML_tag_B", color:gray}
		--...or you can proved an RGB array to set the color of the tag.
		set myXMLTagC to make XML tag with properties {name:"XML_tag_C", color:{0, 92, 128}}
	end tell
end tell

That should be:

		set myXMLTagB to make XML tag with properties {name:"XML_tag_B", tag color:gray}

Thank you once again Shane.
I was pulling my hair out because I was trying to apply the color upon making the markup tag. as in this example below. The markup tag color will not be retained in this script below:

tell application "Adobe InDesign CS4"
tell document 1
	tell XML element 1
		set theStoryElement to make XML element with properties {markup tag:"Story"}
		tell theStoryElement
			set myXMLElement to make XML element with properties {markup tag:"offer1", XML content:selText, tag color: red}
			tell parentStoryID to markup using theStoryElement
		end tell
	end tell
end tell
end tell

But I should have realized that if I create the tag first the following color properties assigned in the make XML markup tag element will not overwrite what is already present.

So I simply needed to make the XML tag first along with the color correction syntax you provided. (line 2)
Thank you once again for all of your help.

tell document 1
make XML tag with properties {name:"offer1", tag color:red}
	tell XML element 1
		set theStoryElement to make XML element with properties {markup tag:"Story"}
		tell theStoryElement
			set myXMLElement to make XML element with properties {markup tag:"offer1", XML content:selText, tag color: red}
			tell parentStoryID to markup using theStoryElement
		end tell
	end tell
end tell

end tell