Red (Crayola)
HEX: #EE204D | Modern Palette
Color Specifications
#EE204D
238, 32, 77
346°, 86% ,93%
0, 86.55, 67.65, 6.67
About Red (Crayola)
Red (Crayola) (#EE204D) is a color with RGB(238, 32, 77) and HSL(346.89°, 86.55%, 93.33%). 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 #20EEC1, which creates strong contrast. Its triadic palette includes #4DEE20 and #204DEE. The name comes from Red (English).
- HEX: #EE204D
- RGB: 238, 32, 77
- HSL: 346.89°, 86.55%, 93.33%
- Mood: Playful
- Style: Neon, Warm
- Use case: Text, Button, Background
- Complementary color: #20EEC1
- Triadic colors: #4DEE20, #204DEE
- 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 #EE204D from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The Crayola color 'Red' is one of the original 8 colors introduced in 1903. It has been a staple in their crayon boxes ever since. The specific hex code #EE204D represents a vibrant, slightly orange-biased red, typical of many 'standard red' representations in art supplies. Crayola's 'Red' is a foundational color, often used as a primary red in color mixing and artistic expression.
First Recorded Use
The word 'red' is one of the oldest color terms in many languages, with roots in Proto-Indo-European *hreudh-.
Cultural Associations
Red is a color with immense cultural significance globally. It is often associated with love, passion, anger, danger, energy, war, and courage. In many Eastern cultures, red symbolizes good luck, prosperity, and happiness (e.g., Chinese New Year). In Western cultures, it's strongly linked to romance (roses, Valentine's Day) and warnings (stop signs, fire engines). Its high visibility makes it a common choice for alerts and important signals.
Code Snippets
/* Background */
.element {
background-color: #EE204D;
}
/* Text */
.element {
color: #EE204D;
}
/* Border */
.element {
border: 1px solid #EE204D;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#EE204D,
#DFFDF6
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#EE204D,
#DFFDF6
);
}
// SCSS variable
$red-(crayola): #EE204D;
// With RGB channels (useful for rgba() usage)
$red-(crayola)-r: 238;
$red-(crayola)-g: 32;
$red-(crayola)-b: 77;
// Usage
.element {
background-color: $red-(crayola);
color: rgba($red-(crayola)-r, $red-(crayola)-g, $red-(crayola)-b, 0.8);
}