NodeBox

Create visual output with Python programming code
Home Download Reference Tutorial Library Gallery About

Color

Colors returned from the color() command in NodeBox have a few useful attributes that allow you to think in different color spaces at the same time. For example, if we wanted to draw a grid of lines in random colors, we would use the following code:

for i in range(HEIGHT):
c = color(random(), random(), random())
stroke(c)
strokewidth(1)
line(0, i, WIDTH, i)

However, since each line now has a random stroke, some lines will tend to look dull and dark. To produce only bright colors, we can easily adjust the lines' brightness without switching to a different color space. For the same reason, a stroke width of two is used instead of one, overlapping the lines makes them appear brighter as well.

for i in range(HEIGHT):
c = color(random(), random(0.5), 0)
c.brightness = 1.0
stroke(c)
strokewidth(2)
line(0, i, WIDTH, i)

 

Color attributes

Colors returned from the color() command (or the fill() or stroke() command for that matter) have the following attributes:

All of these can be used at any time in the script, NodeBox calculates the exact color.

CMYK output

But then what colorspace is used for output? In whatever way you use a colormode() in your script, the PDF-output is always in CMYK. This makes it easy when working with print documents as you don't need to worry about the technical details, but can instead focus on the colors you like. Keep in mind that not all RGB colors are printable though.

Colors are stored in memory

NodeBox remembers the last color you defined, and keeps on using that fill or stroke color, until you define a different one.

Harmonious color

The trick to generating harmonious and consistent colors is not to make them entirely random. A common pitfall is to use ALL of the colors, since, we can. But often this does not generate consistent design.

The HSB color mode is excellent to create color harmony.

Consider the following example:

colormode(HSB)
nofill()
for i in range(10):
c = color(0.5, random(0.5), random(0.5,1.0))
stroke(c)
strokewidth(random(50))
radius = random(200)
oval(random(WIDTH), random(HEIGHT), radius, radius)

The hue is always the same, 0.5 or a hue of 180, which is cyan. Only the saturation and brightness are varied. This ensures we always have shades of blue, so they all fit together. Saturation is limited between 0.0 and 0.5, for a faded look. The brightness is furthermore limited between 0.5 and 1.0 (fifty to a hundred percent) so we get bright colors.

 

Gradients

You can create gradients in NodeBox by drawing lines in a for-loop and increasing the transparency of each line. In the example below color c's alpha transparency ranges from 0.0 to 1.0 (notice how we multiply by 1.0 to get a floating point number).

colormode(HSB)
c = color(0.5, 1, 1)
for i in range(HEIGHT):
c.a = 1.0 * i / HEIGHT
stroke(c)
line(0, i, WIDTH, i)