Telemagenta
HEX: #CF3476 | Modern Palette
Color Specifications
#CF3476
207, 52, 118
334°, 74% ,81%
0, 74.88, 43, 18.82
About Telemagenta
Telemagenta (#CF3476) is a color with RGB(207, 52, 118) and HSL(334.45°, 74.88%, 81.18%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #34CF8D, which creates strong contrast. Its triadic palette includes #76CF34 and #3476CF. The name comes from Telemagenta (English (compound)).
- HEX: #CF3476
- RGB: 207, 52, 118
- HSL: 334.45°, 74.88%, 81.18%
- Mood: Playful
- Style: Warm
- Use case: Text, Button, Background
- Complementary color: #34CF8D
- Triadic colors: #76CF34, #3476CF
- The name comes from Telemagenta (English (compound)).
Live Components
Color Palettes
Telemagenta #CF3476 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
Telemagenta #CF3476 pairs with #34CF8D as its complementary color, and #76CF34 and #3476CF in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#7D7D72
#585877
#CC4141
#737373
Frequently Asked Questions
Name, History & Etymology
History
The term 'Telemagenta' is a compound word, combining 'tele-' (from Greek 'tēle' meaning 'far off, at a distance', often associated with telecommunications) and 'magenta' (a purplish-red color). It is not a naturally occurring color name but rather a specific designation, likely originating in technical standards for color reproduction, such as RAL (Reichsausschuss für Lieferbedingungen - German Commission for Delivery Terms and Quality Assurance) color system. RAL 4010 'Telemagenta' is a well-known standard. The 'tele-' prefix might have been added to distinguish it from other magenta shades, possibly for use in telecommunication equipment, cabling, or digital display standards where precise color identification is crucial.
First Recorded Use
1980s-1990s (likely in technical or design contexts)
Cultural Associations
While not a widely recognized color name in everyday language, 'Telemagenta' holds significance in industrial design, engineering, and graphic arts, particularly in Europe due to the prevalence of the RAL system. It represents a specific, standardized hue rather than a general descriptive term. Its association with 'tele-' might subtly evoke a sense of modernity, technology, or digital communication.
Code Snippets
/* Background */
.element {
background-color: #CF3476;
}
/* Text */
.element {
color: #CF3476;
}
/* Border */
.element {
border: 1px solid #CF3476;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CF3476,
#ABF3D4
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CF3476,
#ABF3D4
);
}
// SCSS variable
$telemagenta: #CF3476;
// With RGB channels (useful for rgba() usage)
$telemagenta-r: 207;
$telemagenta-g: 52;
$telemagenta-b: 118;
// Usage
.element {
background-color: $telemagenta;
color: rgba($telemagenta-r, $telemagenta-g, $telemagenta-b, 0.8);
}