Red (NCS)
HEX: #C40233 | Modern Palette
Color Specifications
#C40233
196, 2, 51
344°, 98% ,76%
0, 98.98, 73.98, 23.14
About Red (NCS)
Red (NCS) (#C40233) is a color with RGB(196, 2, 51) and HSL(344.85°, 98.98%, 76.86%). It is commonly associated with Bold, Playful moods. In design, it fits Neon, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #02C493, which creates strong contrast. Its triadic palette includes #33C402 and #0233C4. The name comes from Red (English).
- HEX: #C40233
- RGB: 196, 2, 51
- HSL: 344.85°, 98.98%, 76.86%
- Mood: Bold, Playful
- Style: Neon, Warm
- Use case: Text, Button, Accent
- Complementary color: #02C493
- Triadic colors: #33C402, #0233C4
- The name comes from Red (English).
Live Components
Color Palettes
Red (NCS) #C40233 is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Color Harmonies
Red (NCS) #C40233 pairs with #02C493 as its complementary color, and #33C402 and #0233C4 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Frequently Asked Questions
Name, History & Etymology
History
The word 'red' comes from the Old English 'rēad', which itself derives from the Proto-Germanic '*raudaz' and ultimately from the Proto-Indo-European root '*h₁rewdʰ-' meaning 'red, ruddy'. This makes it cognate with words for red in many other Indo-European languages, such as Latin 'ruber', Greek 'erythros', Sanskrit 'rudhira', and Russian 'krasny'. Red has been one of the first colors to be named and used by humans, evident in prehistoric cave paintings. It is often associated with fire, blood, and strong emotions.
First Recorded Use
Before 7th century
Cultural Associations
In many Western cultures, red is associated with love, passion, anger, danger, and excitement. It is the color of Valentine's Day and often used for stop signs and warning signals. In China, red is a very auspicious color, symbolizing good fortune, happiness, and prosperity. It is widely used in celebrations, weddings, and the Chinese New Year. In India, red is associated with purity, fertility, love, and beauty, often worn by brides and used in religious ceremonies. In some African cultures, red can symbolize death or mourning, but also vitality and life. Politically, red has been associated with communism and socialism (e.g., the red flag). In heraldry, red (gules) signifies magnanimity, military strength, and warrior spirit.
Code Snippets
/* Background */
.element {
background-color: #C40233;
}
/* Text */
.element {
color: #C40233;
}
/* Border */
.element {
border: 1px solid #C40233;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C40233,
#8AFEE1
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C40233,
#8AFEE1
);
}
// SCSS variable
$red-(ncs): #C40233;
// With RGB channels (useful for rgba() usage)
$red-(ncs)-r: 196;
$red-(ncs)-g: 2;
$red-(ncs)-b: 51;
// Usage
.element {
background-color: $red-(ncs);
color: rgba($red-(ncs)-r, $red-(ncs)-g, $red-(ncs)-b, 0.8);
}