French Pink

HEX: #FD6C9E | Modern Palette

On White
2.69:1
FAIL
On Black
7.82:1
PASS

Color Specifications

HEX
#FD6C9E
RGB
253, 108, 158
HSL
339°, 57% ,99%
CMYK
0, 57.31, 37.55, 0.78

About French Pink

French Pink (#FD6C9E) is a color with RGB(253, 108, 158) and HSL(339.31°, 57.31%, 99.22%). In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #6CFDCB, which creates strong contrast. Its triadic palette includes #9EFD6C and #6C9EFD.

  • HEX: #FD6C9E
  • RGB: 253, 108, 158
  • HSL: 339.31°, 57.31%, 99.22%
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #6CFDCB
  • Triadic colors: #9EFD6C, #6C9EFD

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 #FD6C9E from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Warm

Accessibility Simulation

Deuteranopia #A8A89A
Protanopia #87879F
Tritanopia #FA7474
Achromatopsia #9E9E9E

Frequently Asked Questions

French Pink (#FD6C9E) is a color with RGB(253, 108, 158) and HSL(339.31°, 57.31%, 99.22%).

#FD6C9E pairs strongly with #6CFDCB as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#FD6C9E is suitable for Text, Button, Background and works well with Warm styles.

Similar Named Colors

Light Crimson #F56991 ΔE 2.79
Strawberry #FC5A8D ΔE 3.85
Violet Red #F75394 ΔE 4.77
Brilliant Rose #FF55A3 ΔE 4.78

Code Snippets

/* Background */
.element {
    background-color: #FD6C9E;
}

/* Text */
.element {
    color: #FD6C9E;
}

/* Border */
.element {
    border: 1px solid #FD6C9E;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #FD6C9E,
        #FCFEFD
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FD6C9E,
        #FCFEFD
    );
}

// SCSS variable
$french-pink: #FD6C9E;

// With RGB channels (useful for rgba() usage)
$french-pink-r: 253;
$french-pink-g: 108;
$french-pink-b: 158;

// Usage
.element {
    background-color: $french-pink;
    color: rgba($french-pink-r, $french-pink-g, $french-pink-b, 0.8);
}