Coral

HEX: #FF7F50 | Modern Palette

On White
2.50:1
FAIL
On Black
8.40:1
PASS

Color Specifications

HEX
#FF7F50
RGB
255, 127, 80
HSL
16°, 100% ,65%
CMYK
0, 50, 69, 0

About Coral

Coral (#FF7F50) is a color with RGB(255, 127, 80) and HSL(16.1°, 100%, 65.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 #50D0FF, which creates strong contrast. Its triadic palette includes #50FF7F and #7F50FF. The name comes from κοράλλιον (korállion) (Ancient Greek).

  • HEX: #FF7F50
  • RGB: 255, 127, 80
  • HSL: 16.1°, 100%, 65.7%
  • Mood: Energetic, Bold
  • Style: Vivid, Neon
  • Use case: Text, Button, Accent
  • Complementary color: #50D0FF
  • Triadic colors: #50FF7F, #7F50FF
  • The name comes from κοράλλιον (korállion) (Ancient Greek).

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

Color Characteristics

Style
Vivid Neon
Use case
Text Button Accent

Accessibility Simulation

Deuteranopia #B1B147
Protanopia #949452
Tritanopia #FF7A7A
Achromatopsia #A4A4A4

Frequently Asked Questions

Coral (#FF7F50) is a color with RGB(255, 127, 80) and HSL(16.1°, 100%, 65.7%).

#FF7F50 pairs strongly with #50D0FF as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

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

#FF7F50 is commonly associated with Energetic, Bold.

The name Coral is linked to κοράλλιον (korállion) from Ancient Greek, meaning coral.

Name, History & Etymology

Origin Word κοράλλιον (korállion)
Meaning coral
Language Ancient Greek
First Recorded Use 14th Century

History

The term "coral" has been used for centuries to describe the hard, stony skeletons of marine polyps, particularly those that form reefs. Ancient civilizations were aware of coral and used it for decorative purposes and in jewelry. The scientific understanding of coral as a living organism rather than a plant or mineral evolved over time, with significant contributions from naturalists in the 17th and 18th centuries. The color 'coral' as a specific hue in English is a more recent development, likely gaining prominence with the rise of color standardization and fashion terminology.

First Recorded Use

The English word "coral" is attested from the late 14th century, derived via Old French "coral" from Latin "corallium", which in turn came from the Ancient Greek "korállion".

Cultural Associations

Coral has held various cultural significances across different societies. In ancient Rome, coral was believed to protect children from harm. In some Asian cultures, red coral is considered a precious gem and a symbol of good fortune and status. It has been used extensively in jewelry, amulets, and decorative arts. The color 'coral' itself evokes images of tropical seas, warmth, and vibrancy, often associated with summer and beachwear in modern fashion and design.

Similar Named Colors

Orange (Crayola) #FF7538 ΔE 3.51
Mango Tango #FF8243 ΔE 3.79
Salmon #FF8C69 ΔE 4.13
Outrageous Orange #FF6E4A ΔE 4.47

Code Snippets

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

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

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

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

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #FF7F50,
        #50D0FF
    );
}

// SCSS variable
$coral: #FF7F50;

// With RGB channels (useful for rgba() usage)
$coral-r: 255;
$coral-g: 127;
$coral-b: 80;

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