CG Red
HEX: #E03C31 | Modern Palette
Color Specifications
#E03C31
224, 60, 49
3°, 73% ,53%
0, 73, 78, 12
About CG Red
CG Red (#E03C31) is a color with RGB(224, 60, 49) and HSL(3.8°, 73.8%, 53.5%). It is commonly associated with Energetic, Romantic moods. In design, it fits Vivid, Warm styles and is suitable for Text, Button, Accent. Its complementary color is #31D5E0, which creates strong contrast. Its triadic palette includes #31E03C and #3C31E0. The name comes from CG Red (English).
- HEX: #E03C31
- RGB: 224, 60, 49
- HSL: 3.8°, 73.8%, 53.5%
- Mood: Energetic, Romantic
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #31D5E0
- Triadic colors: #31E03C, #3C31E0
- The name comes from CG Red (English).
Live Components
Color Palettes
CG Red #E03C31 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
CG Red #E03C31 pairs with #31D5E0 as its complementary color, and #31E03C and #3C31E0 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 term 'CG Red' strongly suggests a proprietary or designated color within a specific organization or brand whose initials are 'CG'. Many companies define their brand colors with unique names (e.g., 'Coca-Cola Red', 'UPS Brown'). The hexadecimal code #e03c31 confirms it's a precisely defined digital color. Without knowing what 'CG' stands for, the specific historical context remains tied to that unknown entity's branding evolution. It's a vibrant, strong red, often associated with energy, passion, or urgency.
First Recorded Use
The exact first use is difficult to pinpoint without specific brand documentation. It likely emerged when 'CG' (whatever it represents) established its brand identity and color palette.
Cultural Associations
Red, in general, is a color with rich and varied cultural meanings globally. It can symbolize love, passion, anger, danger, courage, and importance. In branding, red is often used to grab attention, stimulate appetite, or convey excitement and power. The specific shade #e03c31 is a bright, slightly orange-leaning red, which might evoke warmth or dynamism depending on its application.
Code Snippets
/* Background */
.element {
background-color: #E03C31;
}
/* Text */
.element {
color: #E03C31;
}
/* Border */
.element {
border: 1px solid #E03C31;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#E03C31,
#31D5E0
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#E03C31,
#31D5E0
);
}
// SCSS variable
$cg-red: #E03C31;
// With RGB channels (useful for rgba() usage)
$cg-red-r: 224;
$cg-red-g: 60;
$cg-red-b: 49;
// Usage
.element {
background-color: $cg-red;
color: rgba($cg-red-r, $cg-red-g, $cg-red-b, 0.8);
}