Carmine
HEX: #FF0040 | Modern Palette
Color Specifications
#FF0040
255, 0, 64
344°, 100% ,50%
0, 100, 75, 0
About Carmine
Carmine (#FF0040) is a color with RGB(255, 0, 64) and HSL(344.9°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #00FFBF, which creates strong contrast. Its triadic palette includes #40FF00 and #0040FF. The name comes from carminus (Latin).
- HEX: #FF0040
- RGB: 255, 0, 64
- HSL: 344.9°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00FFBF
- Triadic colors: #40FF00, #0040FF
- The name comes from carminus (Latin).
Live Components
Color Palettes
Carmine #FF0040 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
Carmine #FF0040 pairs with #00FFBF as its complementary color, and #40FF00 and #0040FF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
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 word 'carmine' ultimately derives from the Medieval Latin 'carminus', which itself comes from the Arabic 'qirmiz' (crimson), referring to the kermes insect from which a red dye was obtained. This Arabic word has roots in Sanskrit 'krmi-ja' meaning 'produced by a worm'. The term entered English in the 16th century, specifically referring to a vivid crimson pigment made from cochineal insects. Cochineal dye was highly valued and traded, especially after the Spanish conquest of Mexico, where the insects were cultivated. The pigment was used extensively in art, textiles, and cosmetics.
First Recorded Use
16th century (English)
Cultural Associations
Carmine is a rich, vibrant red, often with a purplish tinge. It is strongly associated with luxury, passion, and royalty due to its historical use as a high-value dye. In art, carmine pigments were prized for their intensity and permanence. It is also a common color in cosmetics, particularly lipsticks and blushes, for its flattering and striking hue. The color can evoke feelings of drama, energy, and sophistication.
Code Snippets
/* Background */
.element {
background-color: #FF0040;
}
/* Text */
.element {
color: #FF0040;
}
/* Border */
.element {
border: 1px solid #FF0040;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF0040,
#00FFBF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF0040,
#00FFBF
);
}
// SCSS variable
$carmine: #FF0040;
// With RGB channels (useful for rgba() usage)
$carmine-r: 255;
$carmine-g: 0;
$carmine-b: 64;
// Usage
.element {
background-color: $carmine;
color: rgba($carmine-r, $carmine-g, $carmine-b, 0.8);
}