Crimson Glory
HEX: #BE0032 | Modern Palette
Color Specifications
#BE0032
190, 0, 50
344°, 100% ,37%
0, 100, 74, 25
About Crimson Glory
Crimson Glory (#BE0032) is a color with RGB(190, 0, 50) and HSL(344.2°, 100%, 37.3%). 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 #00BE8C, which creates strong contrast. Its triadic palette includes #32BE00 and #0032BE. The name comes from Crimson Glory (English).
- HEX: #BE0032
- RGB: 190, 0, 50
- HSL: 344.2°, 100%, 37.3%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00BE8C
- Triadic colors: #32BE00, #0032BE
- The name comes from Crimson Glory (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 #BE0032 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The name 'Crimson Glory' is most famously associated with a highly successful and influential hybrid tea rose cultivar, bred by Wilhelm Kordes II in Germany and introduced in 1935. This rose quickly gained international acclaim for its intense fragrance, rich crimson color, and robust growth. It became a parent to many other important rose varieties. Beyond the rose, 'crimson glory' as a descriptive phrase evokes powerful imagery. 'Crimson' itself has a long history, deriving from the Arabic 'qirmiz' (kermes, the insect from which the dye was obtained) and entering English via Old French. 'Glory' comes from Latin 'gloria,' meaning fame, renown, praise. The combination suggests a peak of beauty or achievement in a striking red hue.
First Recorded Use
1935 (for the rose cultivar)
Cultural Associations
The 'Crimson Glory' rose is a classic and beloved variety, often symbolizing deep love, passion, and enduring beauty. Its name itself carries connotations of majesty and splendor. In broader cultural contexts, crimson is a color frequently associated with power, luxury, sacrifice, and strong emotions. The addition of 'glory' elevates this to a state of celebrated magnificence, making the phrase evocative of peak achievement or striking visual impact.
Code Snippets
/* Background */
.element {
background-color: #BE0032;
}
/* Text */
.element {
color: #BE0032;
}
/* Border */
.element {
border: 1px solid #BE0032;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#BE0032,
#00BE8C
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#BE0032,
#00BE8C
);
}
// SCSS variable
$crimson-glory: #BE0032;
// With RGB channels (useful for rgba() usage)
$crimson-glory-r: 190;
$crimson-glory-g: 0;
$crimson-glory-b: 50;
// Usage
.element {
background-color: $crimson-glory;
color: rgba($crimson-glory-r, $crimson-glory-g, $crimson-glory-b, 0.8);
}