Red
HEX: #FF0000 | Modern Palette
Color Specifications
#FF0000
255, 0, 0
0°, 100% ,50%
0, 100, 100, 0
About Red
Red (#FF0000) is a color with RGB(255, 0, 0) and HSL(0°, 100%, 50%). It is commonly associated with Energetic, Bold moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is Cyan (#00FFFF), which creates strong contrast. Its triadic palette includes Green (#00FF00) and Blue (#0000FF). The name comes from *h₁rewdʰ- (Proto-Indo-European).
- HEX: #FF0000
- RGB: 255, 0, 0
- HSL: 0°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: Cyan (#00FFFF)
- Triadic colors: Green (#00FF00), Blue (#0000FF)
- The name comes from *h₁rewdʰ- (Proto-Indo-European).
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 #FF0000 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'red' has cognates across numerous Indo-European languages, reflecting its ancient origin. Examples include Latin 'ruber', Greek 'erythros', Sanskrit 'rudhira', German 'rot', and Russian 'krasny' (though 'krasny' also means beautiful, showing a semantic shift). Historically, red pigments were among the first used by humans, derived from ochre and later from minerals like cinnabar and organic sources like madder root and cochineal. It has consistently been a color of strong symbolic meaning across cultures and throughout history.
First Recorded Use
The concept and word for 'red' are among the oldest and most fundamental in human language, dating back to Proto-Indo-European and earlier. Its use in art and pigments is evident from the Upper Paleolithic period (e.g., cave paintings).
Code Snippets
/* Background */
.element {
background-color: #FF0000;
}
/* Text */
.element {
color: #FF0000;
}
/* Border */
.element {
border: 1px solid #FF0000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FF0000,
#00FFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FF0000,
#00FFFF
);
}
// SCSS variable
$red: #FF0000;
// With RGB channels (useful for rgba() usage)
$red-r: 255;
$red-g: 0;
$red-b: 0;
// Usage
.element {
background-color: $red;
color: rgba($red-r, $red-g, $red-b, 0.8);
}