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
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 #E03C31 from deepest shade to lightest tint.
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);
}