[InDesign] How to apply color to the story?

I managed to apply properties such as font, point size, justification to the specific story, may I know how to apply other properties especially the COLOR to the story?
Thanks in advance.
My workable properties settings as follows:-

set applied font of theStory to “Times”
set point size of theStory to “13pt”
set justification of theStory to left align

Hi cits

try something like the below

tell application "Adobe InDesign CS3"
	set applied font of theStory to "Times"
	set point size of theStory to "13pt"
	set justification of theStory to left align
	set _Swatch to make color with properties {name:"Colour1", color:CMYK, color value:{0, 100, 0, 20}, model:spot}
	--or
	--set _Swatch to make color with properties {name:"Colour1", color:CMYK, color value:{0, 100, 0, 20}}
end tell

Budgie

Thank you, Budgie!