ZBrushCentral

Setting a specific color to a subtool

So I would like to set a specific value to all visible subtools but Im a total noob here and not sure how to actually do that. Preferably as the loop goes on I would like to set the next value also.

Again sorry for the probably easy answer.

[VarDef, myColors(9), 0]

//Set RGB values
[VarSet, myColors(0), 0]
[VarSet, myColors(1), 13]
[VarSet, myColors(2), 25]
[VarSet, myColors(3), 38]
[VarSet, myColors(4), 50]
[VarSet, myColors(5), 63]
[VarSet, myColors(6), 75]
[VarSet, myColors(7), 88]
[VarSet, myColors(8), 100]

[Loop,[SubToolGetCount],//loop through all subtools
[SubToolSelect,[Val,n]]

[If,([IModGet,"Tool:Subtool 0"]&32 == 32), [IColorSet,125,75,225] // This is where i want to set my color value with myColor array. ] ,n]