Sky Magenta
HEX: #CF71AF | Modern Palette
Color Specifications
#CF71AF
207, 113, 175
320°, 49% ,62%
0, 45, 15, 19
About Sky Magenta
Sky Magenta (#CF71AF) is a color with RGB(207, 113, 175) and HSL(320.4°, 49.5%, 62.7%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Logo. Its complementary color is #71CF91, which creates strong contrast. Its triadic palette includes #AFCF71 and #71AFCF. The name comes from Sky Magenta (English).
- HEX: #CF71AF
- RGB: 207, 113, 175
- HSL: 320.4°, 49.5%, 62.7%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Logo
- Complementary color: #71CF91
- Triadic colors: #AFCF71, #71AFCF
- The name comes from Sky Magenta (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 #CF71AF from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Magenta itself was discovered in 1859 and named after the Battle of Magenta. The addition of 'Sky' to describe a specific shade of magenta is a more modern descriptor, often used in art, fashion, and digital design to evoke a particular atmospheric quality. It suggests a brighter, perhaps less saturated, or more ethereal magenta than a standard magenta, aligning with the varied and often pastel or vibrant hues seen in the sky during specific times of day.
First Recorded Use
The specific color name 'Sky Magenta' likely emerged with the proliferation of digital color systems and expanded commercial color palettes in the late 20th century, though the concept of a 'sky' related magenta could have been described earlier.
Cultural Associations
The term 'Sky Magenta' evokes imagery of dramatic sunsets, twilight hours, or even the vibrant, almost surreal colors that can appear in the sky during certain atmospheric conditions. It's often associated with creativity, dreaminess, and a sense of wonder. In fashion and design, it can be used to convey playfulness, femininity, or a modern, artistic sensibility.
Code Snippets
/* Background */
.element {
background-color: #CF71AF;
}
/* Text */
.element {
color: #CF71AF;
}
/* Border */
.element {
border: 1px solid #CF71AF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CF71AF,
#71CF91
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CF71AF,
#71CF91
);
}
// SCSS variable
$sky-magenta: #CF71AF;
// With RGB channels (useful for rgba() usage)
$sky-magenta-r: 207;
$sky-magenta-g: 113;
$sky-magenta-b: 175;
// Usage
.element {
background-color: $sky-magenta;
color: rgba($sky-magenta-r, $sky-magenta-g, $sky-magenta-b, 0.8);
}