Sky Magenta

HEX: #CF71AF | Modern Palette

On White
3.17:1
FAIL
On Black
6.63:1
PASS

Color Specifications

HEX
#CF71AF
RGB
207, 113, 175
HSL
320°, 49% ,62%
CMYK
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

LIGHT
DARK
System Notification Box

Color Palettes

Monochromatic Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1 Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.

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.

Color Characteristics

Mood
Romantic
Style
Warm
Use case
Text Button Logo

Accessibility Simulation

Deuteranopia #9494AD
Protanopia #8080AF
Tritanopia #CA7B7B
Achromatopsia #919191

Frequently Asked Questions

Sky Magenta (#CF71AF) is a color with RGB(207, 113, 175) and HSL(320.4°, 49.5%, 62.7%).

#CF71AF pairs strongly with #71CF91 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#CF71AF is suitable for Text, Button, Logo and works well with Warm styles.

#CF71AF is commonly associated with Romantic.

The name Sky Magenta is linked to Sky Magenta from English, meaning A shade of magenta reminiscent of a vibrant, often sunset or twilight, sky..

Name, History & Etymology

Origin Word Sky Magenta
Meaning A shade of magenta reminiscent of a vibrant, often sunset or twilight, sky.
Language English
First Recorded Use Late 20th Century

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.

Similar Named Colors

Super Pink #CF6BA9 ΔE 1.64
Wild Orchid #D470A2 ΔE 3.68
Thulian Pink #DE6FA1 ΔE 5.27
Pearly Purple #B768A2 ΔE 5.37

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);
}