Fuzzy Wuzzy
HEX: #CC6666 | Modern Palette
Color Specifications
#CC6666
204, 102, 102
0°, 50% ,60%
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
Color Palettes
Fuzzy Wuzzy #CC6666 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Fuzzy Wuzzy #CC6666 pairs with #66CCCC as its complementary color, and #66CC66 and #6666CC in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Analogous
Colors adjacent on the wheel — naturally harmonious and pleasing to the eye.
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.
Frequently Asked Questions
Name, History & Etymology
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.
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);
}