Red (Munsell)
HEX: #F2003C | Modern Palette
Color Specifications
#F2003C
242, 0, 60
345°, 100% ,94%
0, 100, 75.21, 5.1
About Red (Munsell)
Red (Munsell) (#F2003C) is a color with RGB(242, 0, 60) and HSL(345.12°, 100%, 94.9%). It is commonly associated with Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Background. Its complementary color is #00F2B6, which creates strong contrast. Its triadic palette includes #3CF200 and #003CF2. The name comes from Red (English).
- HEX: #F2003C
- RGB: 242, 0, 60
- HSL: 345.12°, 100%, 94.9%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #00F2B6
- Triadic colors: #3CF200, #003CF2
- The name comes from Red (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 #F2003C from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'red' comes from the Old English 'rēad', which itself derives from Proto-Germanic '*raudaz' and ultimately from the Proto-Indo-European root '*h₁rewdʰ-' meaning 'red, ruddy'. It is one of the oldest and most basic color terms across many languages. The specific 'Red (Munsell)' refers to a color within the Munsell color system, a system developed by Albert H. Munsell in the early 20th century to describe colors based on three dimensions: hue, value (lightness), and chroma (colorfulness). This particular shade is a specific point within that system, designed for precise color communication and standardization.
First Recorded Use
Before 900 AD
Cultural Associations
Red is a color with immense cultural significance globally. It is often associated with love, passion, desire, and romance, as well as anger, danger, warning, and aggression. In many Western cultures, red is linked to Christmas (with green) and Valentine's Day. In China, red symbolizes good fortune, happiness, and prosperity, and is widely used in celebrations and weddings. In India, red is associated with purity, fertility, and love, and is often worn by brides. It is also a color of revolution and communism in some political contexts. Its high visibility makes it a common color for stop signs and emergency equipment.
Code Snippets
/* Background */
.element {
background-color: #F2003C;
}
/* Text */
.element {
color: #F2003C;
}
/* Border */
.element {
border: 1px solid #F2003C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#F2003C,
#E5FFF9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#F2003C,
#E5FFF9
);
}
// SCSS variable
$red-(munsell): #F2003C;
// With RGB channels (useful for rgba() usage)
$red-(munsell)-r: 242;
$red-(munsell)-g: 0;
$red-(munsell)-b: 60;
// Usage
.element {
background-color: $red-(munsell);
color: rgba($red-(munsell)-r, $red-(munsell)-g, $red-(munsell)-b, 0.8);
}