Smitten
HEX: #C84186 | Modern Palette
Color Specifications
#C84186
200, 65, 134
329°, 67% ,78%
0, 67.5, 33, 21.57
About Smitten
Smitten (#C84186) is a color with RGB(200, 65, 134) and HSL(329.33°, 67.5%, 78.43%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #41C883, which creates strong contrast. Its triadic palette includes #86C841 and #4186C8. The name comes from Smitten (English).
- HEX: #C84186
- RGB: 200, 65, 134
- HSL: 329.33°, 67.5%, 78.43%
- Mood: Playful, Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #41C883
- Triadic colors: #86C841, #4186C8
- The name comes from Smitten (English).
Live Components
Color Palettes
Smitten #C84186 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
Smitten #C84186 pairs with #41C883 as its complementary color, and #86C841 and #4186C8 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The word 'smitten' is the past participle of the verb 'smite'. 'Smite' comes from Old English 'smītan', meaning 'to smear, pollute, strike'. Over time, the 'strike' meaning became dominant. The sense of being 'struck' by love or affection emerged later, likely in the 16th or 17th century, evolving from the more general sense of being 'struck' or 'afflicted' by something. The specific romantic connotation became very common by the 18th and 19th centuries.
First Recorded Use
Circa 1300-1400
Cultural Associations
In modern English, 'smitten' almost exclusively refers to being suddenly and deeply in love or infatuated with someone. It often implies a somewhat overwhelming or even slightly irrational feeling. It carries a romantic and somewhat old-fashioned charm, often used to describe the early stages of a passionate attraction. It can also be used humorously to describe someone who is clearly, and perhaps obviously, infatuated.
Code Snippets
/* Background */
.element {
background-color: #C84186;
}
/* Text */
.element {
color: #C84186;
}
/* Border */
.element {
border: 1px solid #C84186;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C84186,
#A3EDC7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C84186,
#A3EDC7
);
}
// SCSS variable
$smitten: #C84186;
// With RGB channels (useful for rgba() usage)
$smitten-r: 200;
$smitten-g: 65;
$smitten-b: 134;
// Usage
.element {
background-color: $smitten;
color: rgba($smitten-r, $smitten-g, $smitten-b, 0.8);
}