Skip to content
CoDdleCoDoodle home
Creative CodingMay 30, 20265 min read

Color Palettes for Cute Code Doodles

Five chosen colors beat fifteen accidental ones. Here's how we pick a palette before drawing the first div.

colorpalettes

Five colors, chosen on purpose

A cute doodle rarely needs more than five colors: a body, an outline, one accent, a blush, and a background. More colors than that and the eye starts counting them instead of reading the shape.

Pick the five before you draw. Choosing colors while you draw is how you end up with fifteen slightly-different pinks.

Start from a feeling, not a hex code

Decide the mood first — cozy, sunny, sleepy, fizzy — and pick a palette that matches. Warm creamy backgrounds plus a coral accent reads as cozy. Pale sky plus tangerine reads as sunny. The feeling names the colors for you.

One outline color binds everything

A single ink color used for every outline is what makes a doodle feel like one drawing rather than a collage. Navy or near-black works; pure black can feel harsh. Pick once, use everywhere.

:root {
  --ink:   #2B3A55;  /* every outline */
  --body:  #FFFDF7;  /* rice, clouds, faces */
  --blush: #FFB3AD;
  --accent: #FF6B5E; /* one pop */
  --bg:    #E6EFFF;
}

Test it against the background

A color that looks great in isolation can disappear on your actual background. Drop every palette color onto the background side by side before you commit. If two of them blend, nudge one until they don't.

More from the blog

Keep reading

Creative Coding7 min read

Turning a Food Doodle into a Mascot

It started as a rice ball with a face. Here's how one snack doodle became a full mascot with its own expressions.

remixcharacters
Read note

Hands on

Want to try the idea?

Pick a spot to sketch it out — nothing you make here is permanent.