Deep Carmine Pink
HEX: #EF3038 | Modern Palette
Color Specifications
#EF3038
239, 48, 56
357°, 85% ,56%
0, 80, 77, 6
About Deep Carmine Pink
Deep Carmine Pink (#EF3038) is a color with RGB(239, 48, 56) and HSL(357.5°, 85.7%, 56.3%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #30EFE7, which creates strong contrast. Its triadic palette includes #38EF30 and #3038EF. The name comes from Deep Carmine Pink (English).
- HEX: #EF3038
- RGB: 239, 48, 56
- HSL: 357.5°, 85.7%, 56.3%
- Mood: Energetic, Bold
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #30EFE7
- Triadic colors: #38EF30, #3038EF
- The name comes from Deep Carmine Pink (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 #EF3038 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Carmine itself has a rich history, derived from carminic acid produced by cochineal insects, used since antiquity by indigenous peoples in the Americas and later adopted by Europeans. It was a highly prized and expensive dye, known for its brilliant, stable red. 'Pink' as a color name emerged in the 17th century, likely from the flower 'pink'. The combination 'Carmine Pink' describes a shade that leans more towards pink than a pure carmine red, while 'Deep' emphasizes its saturation and richness. This specific shade (#ef3038) is a vivid, intense red-pink, reflecting the vibrancy associated with carmine dyes.
First Recorded Use
While 'Carmine' has ancient origins, and 'Pink' emerged in the 17th century, the specific compound 'Carmine Pink' and its variations like 'Deep Carmine Pink' likely solidified as distinct color names in fashion, art, and dye industries during the late 19th and early 20th centuries with the standardization of color charts and increased commercial production of dyes. Exact first use for this precise combination is difficult to pinpoint without extensive historical textile or paint records, but it follows established naming conventions of the period.
Cultural Associations
Colors like 'Deep Carmine Pink' are often associated with passion, romance, energy, and femininity due to their red and pink components. The 'carmine' aspect can evoke a sense of luxury and historical significance due to its origins as a valuable dye. It's a striking color often used in fashion, cosmetics, and design to make a bold statement.
Code Snippets
/* Background */
.element {
background-color: #EF3038;
}
/* Text */
.element {
color: #EF3038;
}
/* Border */
.element {
border: 1px solid #EF3038;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EF3038,
#30EFE7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EF3038,
#30EFE7
);
}
// SCSS variable
$deep-carmine-pink: #EF3038;
// With RGB channels (useful for rgba() usage)
$deep-carmine-pink-r: 239;
$deep-carmine-pink-g: 48;
$deep-carmine-pink-b: 56;
// Usage
.element {
background-color: $deep-carmine-pink;
color: rgba($deep-carmine-pink-r, $deep-carmine-pink-g, $deep-carmine-pink-b, 0.8);
}