color

How to Plot in Multiple Colors with a Single-Pen Plotter

A practical guide to multi-color pen plotter art: how to separate layers, plan pen changes, manage registration, and choose the right pens and paper.

By Pen Plotter Kit Team · Updated

Multi-color plotting opens up the most visually compelling thing plotters can do — layered color that catches light differently from every angle, subtle overlapping hues that no digital display can replicate. It also introduces new failure modes if you don’t plan for them. Here’s how to get it right.

Step 1: Design for layers, not for appearance

The most important principle: design your file in layers, one per color. Every object on the “blue” layer gets drawn with the blue pen; every object on the “red” layer gets drawn with the red pen. If your design isn’t structured this way, separate it now — not after you’re already at the plotter.

In Inkscape, use the Layers panel to separate by color. In p5.js, create a separate graphics buffer per color and export each as a separate SVG file. vsketch has built-in multi-layer support that maps directly to pen slots.

Step 2: Optimize each layer separately

Run vpype on each color layer independently:

vpype read blue.svg linemerge reorder write blue-opt.svg
vpype read red.svg linemerge reorder write red-opt.svg

Optimizing them separately means the stroke order is optimal per color — if you merged all colors first the reordering would mix colors, which is useless.

Step 3: Choose your pen order

Plot lighter colors first, darker last. Light inks show through dark inks better than the reverse. If you’re working on white paper, yellows and pastels go first; black and dark blue last. This way the dark pen can “correct” any slight misregistration at boundaries — a dark line over a pale edge looks intentional, while a pale line over a dark edge looks like a mistake.

Exception: plotting on dark paper. Opaque gel pens on black paper don’t follow this rule — plot background elements first, highlights last.

Step 4: Handle pen changes cleanly

When your plotter finishes a color pass:

  1. Cap the used pen immediately — don’t set it down uncapped
  2. Run a brief test stroke on scrap paper with the new pen to confirm flow
  3. Insert the new pen in the clamp, tighten to the same depth mark (mark your pens with a line at the correct insertion depth)
  4. Resume the plot

The biggest registration killer is different pens sitting at different heights in the clamp. Most plotter clamps have no mechanical stop — they rely on you inserting the pen to a consistent depth. Mark each pen at the correct insertion point with a piece of tape or a felt-tip mark.

Step 5: Manage registration

Registration is the alignment of one color pass to the next. Even 0.5 mm drift looks obvious on a tight geometric design. Three things minimize it:

Tape your paper down — every time, no exceptions for multi-color work. Use painter’s tape on all four edges. If the paper moves at all between passes, colors won’t align.

Mark your paper corners — before plotting, jog the plotter to the corner of your drawing area and make tiny pencil dots at two corners of the paper. After each pen change, verify the dots are still aligned under the plotter head.

Use the same homing procedure — your plotter returns to home between pen changes. Make sure home is consistent. On AxiDraw, home is the upper-left corner of the machine; on GRBL machines, verify that G28 or your homing command returns to exactly the same position each time.

Color choices that work

Some color combinations are more forgiving than others for multi-pass work:

  • Black + one accent color — the simplest and most reliable. Black provides structure; the accent color adds interest.
  • Warm + cool — yellow/orange and blue/purple read clearly at distance and layer without muddying each other.
  • Complementary pairs — red and green, blue and orange, create high-contrast graphics that look intentional even with slight misregistration.

Avoid colors that are too similar in value (two mid-blues, for example) — misregistration shows clearly because there’s no contrast to hide it at the boundary.

Frequently asked questions

Can I do multi-color plots without a multi-pen plotter?

Yes — and most plotter artists do exactly this. You pause the plot, swap the pen, and resume. Every plotter that supports manual pen changes can do multi-color work. The key is using software that separates your design into per-color layers and sends them sequentially.

How do I keep colors from smearing when the pen crosses a wet area?

Use a fast-drying pen (EnerGel, Pigma Micron) and wait 15–30 seconds between color passes. For color pairs that would look bad if mixed (e.g. blue over red), let the first color fully dry (2–5 minutes) before running the second.

What's the most common mistake in multi-color plotting?

Not separating layers properly before plotting. If your SVG has all colors in one layer and you send the whole file, the plotter draws everything with one pen. You need separate SVGs or separate Inkscape layers per color, sent in sequence.

How many colors can you realistically plot?

Two or three colors work reliably with any plotter. Four to six is practical with careful planning. Beyond six, registration errors and cumulative pen-change time start to outweigh the visual benefit — most artists achieve rich multi-color effects with 3–4 carefully chosen pens.

Do plotters support automatic pen changes?

Most consumer plotters don't — pen change is manual. The AxiDraw supports scripted pausing via its CLI for manual swaps. Professional HP and Roland plotters have carousel systems, but they're not in the hobbyist price range.