Pastel Red

HEX: #FF6961 | Modern Palette

On White
2.82:1
FAIL
On Black
7.45:1
PASS

Color Specifications

HEX
#FF6961
RGB
255, 105, 97
HSL
3°, 100% ,69%
CMYK
0, 59, 62, 0

About Pastel Red

Pastel Red (#FF6961) is a color with RGB(255, 105, 97) and HSL(3°, 100%, 69%). 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 #61F7FF, which creates strong contrast. Its triadic palette includes #61FF69 and #6961FF.

  • HEX: #FF6961
  • RGB: 255, 105, 97
  • HSL: 3°, 100%, 69%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #61F7FF
  • Triadic colors: #61FF69, #6961FF

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #A8A859
Protanopia #858562
Tritanopia #FF6868
Achromatopsia #9A9A9A

Frequently Asked Questions

Pastel Red (#FF6961) is a color with RGB(255, 105, 97) and HSL(3°, 100%, 69%).

#FF6961 pairs strongly with #61F7FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FF6961 is commonly associated with Energetic, Bold.

Similar Named Colors

Bittersweet #FE6F5E ΔE 2.39
Sunset Orange #FD5E53 ΔE 2.70
Red Orange #FF5349 ΔE 4.52
Salmon #FA8072 ΔE 4.63

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF6961,
        #61F7FF
    );
}

// SCSS variable
$pastel-red: #FF6961;

// With RGB channels (useful for rgba() usage)
$pastel-red-r: 255;
$pastel-red-g: 105;
$pastel-red-b: 97;

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