Light Coral
HEX: #F08080 | Modern Palette
Color Specifications
#F08080
240, 128, 128
0°, 78% ,72%
0, 47, 47, 6
About Light Coral
Light Coral (#F08080) is a color with RGB(240, 128, 128) and HSL(0°, 78.9%, 72.2%). It is commonly associated with Playful, Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #80F0F0, which creates strong contrast. Its triadic palette includes #80F080 and #8080F0. The name comes from Light Coral (English).
- HEX: #F08080
- RGB: 240, 128, 128
- HSL: 0°, 78.9%, 72.2%
- Mood: Playful, Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #80F0F0
- Triadic colors: #80F080, #8080F0
- The name comes from Light Coral (English).
Live Components
Color Palettes
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 #F08080 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The color 'coral' itself derives its name from the marine invertebrates, known for their vibrant, often reddish-pink or orange skeletons. As a color, it has been used in art and fashion for a long time. The addition of 'light' to differentiate a paler version is a natural evolution in color nomenclature, allowing for more precise communication of shades. 'Light Coral' gained significant recognition and standardization with the advent of web colors and other digital color palettes, where specific hexadecimal codes were assigned to a wide range of named colors.
First Recorded Use
While 'coral' as a color has existed for centuries, the specific modifier 'light' to denote a distinct shade became more common with the expansion of color naming conventions, especially in art, fashion, and later, digital color systems. Its formal recognition as a distinct color, particularly in digital contexts, solidified in the late 20th century.
Cultural Associations
Coral colors, including 'Light Coral', are often associated with tropical environments, summer, warmth, and femininity. They can evoke feelings of cheerfulness, energy, and playfulness. In fashion, it's a popular spring/summer color. In interior design, it can add a soft, inviting touch. The broader 'coral' family has seen various trends in popularity throughout the 20th and 21st centuries.
Code Snippets
/* Background */
.element {
background-color: #F08080;
}
/* Text */
.element {
color: #F08080;
}
/* Border */
.element {
border: 1px solid #F08080;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F08080,
#80F0F0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F08080,
#80F0F0
);
}
// SCSS variable
$light-coral: #F08080;
// With RGB channels (useful for rgba() usage)
$light-coral-r: 240;
$light-coral-g: 128;
$light-coral-b: 128;
// Usage
.element {
background-color: $light-coral;
color: rgba($light-coral-r, $light-coral-g, $light-coral-b, 0.8);
}