Fuzzy Wuzzy

HEX: #CC6666 | Modern Palette

On White
3.71:1
FAIL
On Black
5.66:1
PASS

Color Specifications

HEX
#CC6666
RGB
204, 102, 102
HSL
0°, 50% ,60%
CMYK
0, 50, 50, 20

About Fuzzy Wuzzy

Fuzzy Wuzzy (#CC6666) is a color with RGB(204, 102, 102) and HSL(0°, 50%, 60%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #66CCCC, which creates strong contrast. Its triadic palette includes #66CC66 and #6666CC. The name comes from Fuzzy Wuzzy (English).

  • HEX: #CC6666
  • RGB: 204, 102, 102
  • HSL: 0°, 50%, 60%
  • Mood: Romantic
  • Style: Warm
  • Use case: Text, Button, Logo
  • Complementary color: #66CCCC
  • Triadic colors: #66CC66, #6666CC
  • The name comes from Fuzzy Wuzzy (English).

Live Components

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

Color Harmonies

Complementary

The color directly opposite on the color wheel — creates maximum contrast and vibrance.

Analogous

Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.

Triadic

Three colors equally spaced 120° apart — bold, balanced, and visually rich.

Split-Complementary

Two colors flanking the complement — high contrast with less tension than full complementary.

Tetradic (Square)

Four colors at 90° intervals — rich variety, best when one color dominates.

Monochromatic

Shades and tints of the same hue — cohesive, elegant, and easy to work with.

Shades & Tints

A seamless scale of #CC6666 from deepest shade to lightest tint.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #8E8E62
Protanopia #777767
Tritanopia #CC6666
Achromatopsia #858585

Frequently Asked Questions

Fuzzy Wuzzy (#CC6666) is a color with RGB(204, 102, 102) and HSL(0°, 50%, 60%).

#CC6666 pairs strongly with #66CCCC as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#CC6666 is suitable for Text, Button, Logo and works well with Warm styles.

#CC6666 is commonly associated with Romantic.

The name Fuzzy Wuzzy is linked to Fuzzy Wuzzy from English, meaning A term of endearment, often for something or someone hairy or furry; also, historically, a derogatory term for Sudanese warriors..

Name, History & Etymology

Origin Word Fuzzy Wuzzy
Meaning A term of endearment, often for something or someone hairy or furry; also, historically, a derogatory term for Sudanese warriors.
Language English
First Recorded Use Late 19th Century

History

The term 'Fuzzy Wuzzy' has a dual history. Initially, it likely emerged as a playful, reduplicative term for something soft, furry, or hairy. However, its most famous historical usage comes from Rudyard Kipling's 1890 poem 'Fuzzy-Wuzzy,' which referred to the Beja warriors (specifically the Hadendoa) of Sudan who fought against the British in the Mahdist War (1881-1899). The poem, while acknowledging their fighting prowess, used the term in a way that was both exoticizing and somewhat demeaning, reflecting colonial attitudes. The 'fuzzy' referred to their distinctive hairstyles. In modern usage, the derogatory colonial connotation has largely faded for many, and the term has reverted to its more innocent meaning of something cute and furry, often used for pets or children. The color #cc6666 (a shade of red) does not have a direct historical link to the term 'Fuzzy Wuzzy' itself, but red can be associated with warmth, softness, or even the 'fuzzy' texture of certain materials.

First Recorded Use

The exact first use is hard to pinpoint, but the term gained prominence in the late 19th century, particularly through Rudyard Kipling's poem.

Cultural Associations

The Kipling poem cemented 'Fuzzy Wuzzy' in the English lexicon, but also embedded a problematic colonial legacy. Today, its use is generally benign, often associated with children's rhymes or descriptions of animals (e.g., 'fuzzy wuzzy bear'). However, awareness of its historical context, particularly its use to describe Sudanese people, is important to understand its full cultural impact. The term can still be considered offensive by those aware of its colonial origins when applied to people.

Similar Named Colors

Chestnut #CD5C5C ΔE 2.64
Light Carmine Pink #E66771 ΔE 5.30
Dark Terra Cotta #CC4E5C ΔE 6.02
Candy Pink #E4717A ΔE 6.18

Code Snippets

/* Background */
.element {
    background-color: #CC6666;
}

/* Text */
.element {
    color: #CC6666;
}

/* Border */
.element {
    border: 1px solid #CC6666;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #CC6666,
        #66CCCC
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #CC6666,
        #66CCCC
    );
}

// SCSS variable
$fuzzy-wuzzy: #CC6666;

// With RGB channels (useful for rgba() usage)
$fuzzy-wuzzy-r: 204;
$fuzzy-wuzzy-g: 102;
$fuzzy-wuzzy-b: 102;

// Usage
.element {
    background-color: $fuzzy-wuzzy;
    color: rgba($fuzzy-wuzzy-r, $fuzzy-wuzzy-g, $fuzzy-wuzzy-b, 0.8);
}