Reports a list of the 14 basic NetLogo hues.
print base-colors => [5 15 25 35 45 55 65 75 85 95 105 115 125 135] ask turtles [ set color one-of base-colors ] ;; each turtle turns a random base color ask turtles [ set color one-of remove gray base-colors ] ;; each turtle turns a random base color except for gray
Take me to the full NetLogo Dictionary