French Fuchsia

HEX: #FD3F92 | Modern Palette

On White
3.33:1
FAIL
On Black
6.30:1
PASS

Color Specifications

HEX
#FD3F92
RGB
253, 63, 146
HSL
333°, 75% ,99%
CMYK
0, 75.1, 42.29, 0.78

About French Fuchsia

French Fuchsia (#FD3F92) is a color with RGB(253, 63, 146) and HSL(333.79°, 75.1%, 99.22%). It is commonly associated with Playful moods. In design, it fits Warm styles and is suitable for Text, Button, Background. Its complementary color is #3FFDAA, which creates strong contrast. Its triadic palette includes #92FD3F and #3F92FD.

  • HEX: #FD3F92
  • RGB: 253, 63, 146
  • HSL: 333.79°, 75.1%, 99.22%
  • Mood: Playful
  • Style: Warm
  • Use case: Text, Button, Background
  • Complementary color: #3FFDAA
  • Triadic colors: #92FD3F, #3F92FD

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

Color Characteristics

Mood
Playful
Style
Warm

Accessibility Simulation

Deuteranopia #99998D
Protanopia #6C6C93
Tritanopia #F95050
Achromatopsia #8D8D8D

Frequently Asked Questions

French Fuchsia (#FD3F92) is a color with RGB(253, 63, 146) and HSL(333.79°, 75.1%, 99.22%).

#FD3F92 pairs strongly with #3FFDAA as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FD3F92 is commonly associated with Playful.

Similar Named Colors

French Rose #F64A8A ΔE 2.30
Violet Red #F75394 ΔE 2.35
Rose Bonbon #F9429E ΔE 2.80
Deep Pink #FF1493 ΔE 3.43

Code Snippets

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

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

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

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

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

// SCSS variable
$french-fuchsia: #FD3F92;

// With RGB channels (useful for rgba() usage)
$french-fuchsia-r: 253;
$french-fuchsia-g: 63;
$french-fuchsia-b: 146;

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