Dynamo with generate color list, but the color style aways same

:grinning:Hi friends, I meet this problem the color style aways the same. I want to get a color list with very different bright color.
Here is script and some color list.
Thanks for your~
a aa aaa

In your Python script you have colorR and colorG set to the same input and IN[5] is unused.

image

The effect is that you are only getting colours on the yellow to blue spectrum. I assume you really want

colorR = IN[3]
colorG = IN[4]
colorB = IN[5]
2 Likes

Many thanks for you ~~
It’s a stupid mistake.:joy::joy::joy::joy::joy:

1 Like