Upsdell Red
HEX: #AE2029 | Modern Palette
Color Specifications
#AE2029
174, 32, 41
356°, 68% ,40%
0, 82, 76, 32
About Upsdell Red
Upsdell Red (#AE2029) is a color with RGB(174, 32, 41) and HSL(356.2°, 68.9%, 40.4%). It is commonly associated with Romantic moods. In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #20AEA5, which creates strong contrast. Its triadic palette includes #29AE20 and #2029AE. The name comes from Upsdell Red (English).
- HEX: #AE2029
- RGB: 174, 32, 41
- HSL: 356.2°, 68.9%, 40.4%
- Mood: Romantic
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #20AEA5
- Triadic colors: #29AE20, #2029AE
- The name comes from Upsdell 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 #AE2029 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Upsdell Red (hex #ae2029) is a shade of red that gained prominence through its association with the University of Cambridge. It is the official color of the Cambridge University Boat Club and is famously used on their rowing blades and kit. The name 'Upsdell' is believed to refer to a person or family associated with the university or the boat club, though specific details are not widely publicized. It is a distinct, deep red, often described as a 'claret' or 'maroon' shade, and is a key part of the visual identity of Cambridge rowing.
First Recorded Use
1990s
Cultural Associations
This color is deeply embedded in the culture of the University of Cambridge, particularly within its rowing community. It is a symbol of the Cambridge University Boat Club (CUBC) and is instantly recognizable to anyone familiar with the Oxford and Cambridge Boat Race. The color represents tradition, athletic prowess, and the competitive spirit of Cambridge against Oxford. Its use on the 'light blue' (Cambridge's primary university color) kit creates a strong visual identity.
Code Snippets
/* Background */
.element {
background-color: #AE2029;
}
/* Text */
.element {
color: #AE2029;
}
/* Border */
.element {
border: 1px solid #AE2029;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#AE2029,
#20AEA5
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#AE2029,
#20AEA5
);
}
// SCSS variable
$upsdell-red: #AE2029;
// With RGB channels (useful for rgba() usage)
$upsdell-red-r: 174;
$upsdell-red-g: 32;
$upsdell-red-b: 41;
// Usage
.element {
background-color: $upsdell-red;
color: rgba($upsdell-red-r, $upsdell-red-g, $upsdell-red-b, 0.8);
}