Violet Red

HEX: #F75394 | Modern Palette

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

Color Specifications

HEX
#F75394
RGB
247, 83, 148
HSL
336°, 91% ,64%
CMYK
0, 66, 40, 3

About Violet Red

Violet Red (#F75394) is a color with RGB(247, 83, 148) and HSL(336.2°, 91.1%, 64.7%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #53F7B6, which creates strong contrast. Its triadic palette includes #94F753 and #5394F7.

  • HEX: #F75394
  • RGB: 247, 83, 148
  • HSL: 336.2°, 91.1%, 64.7%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #53F7B6
  • Triadic colors: #94F753, #5394F7

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #9C9C90
Protanopia #757595
Tritanopia #F45E5E
Achromatopsia #909090

Frequently Asked Questions

Violet Red (#F75394) is a color with RGB(247, 83, 148) and HSL(336.2°, 91.1%, 64.7%).

#F75394 pairs strongly with #53F7B6 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#F75394 is suitable for Text, Button, Accent and works well with Vivid, Neon styles.

#F75394 is commonly associated with Energetic, Bold.

Similar Named Colors

French Rose #F64A8A ΔE 2.13
French Fuchsia #FD3F92 ΔE 2.35
Brilliant Rose #FF55A3 ΔE 2.97
Strawberry #FC5A8D ΔE 3.24

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #F75394,
        #53F7B6
    );
}

// SCSS variable
$violet-red: #F75394;

// With RGB channels (useful for rgba() usage)
$violet-red-r: 247;
$violet-red-g: 83;
$violet-red-b: 148;

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