Utah Crimson
HEX: #D3003F | Modern Palette
Color Specifications
#D3003F
211, 0, 63
342°, 100% ,41%
0, 100, 70, 17
About Utah Crimson
Utah Crimson (#D3003F) is a color with RGB(211, 0, 63) and HSL(342.1°, 100%, 41.4%). 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 #00D394, which creates strong contrast. Its triadic palette includes #3FD300 and #003FD3. The name comes from Crimson (English).
- HEX: #D3003F
- RGB: 211, 0, 63
- HSL: 342.1°, 100%, 41.4%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00D394
- Triadic colors: #3FD300, #003FD3
- The name comes from Crimson (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 #D3003F from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The word 'crimson' comes from Old Spanish 'cremesin', which itself is derived from Arabic 'qirmiz' (kermes), referring to the insect (Kermes vermilio) from which the dye was originally obtained. The color 'Utah Crimson' specifically refers to the shade of red used by the University of Utah as one of its official colors. This color is deeply ingrained in the university's identity, appearing in its athletic uniforms, branding, and merchandise. The specific hex code #d3003f represents this particular shade.
First Recorded Use
14th century
Cultural Associations
In the context of the University of Utah, 'Utah Crimson' is a powerful symbol of school spirit, tradition, and athletic prowess. It is prominently featured during sporting events, especially for the Utah Utes, and is a unifying color for students, alumni, and fans. The color evokes a sense of pride and belonging for those associated with the university. More broadly, crimson colors are often associated with passion, strength, courage, and sometimes royalty or luxury.
Code Snippets
/* Background */
.element {
background-color: #D3003F;
}
/* Text */
.element {
color: #D3003F;
}
/* Border */
.element {
border: 1px solid #D3003F;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D3003F,
#00D394
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D3003F,
#00D394
);
}
// SCSS variable
$utah-crimson: #D3003F;
// With RGB channels (useful for rgba() usage)
$utah-crimson-r: 211;
$utah-crimson-g: 0;
$utah-crimson-b: 63;
// Usage
.element {
background-color: $utah-crimson;
color: rgba($utah-crimson-r, $utah-crimson-g, $utah-crimson-b, 0.8);
}