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
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 #C84186 from deepest shade to lightest tint.
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);
}