UA Red
HEX: #D9004C | Modern Palette
Color Specifications
#D9004C
217, 0, 76
339°, 100% ,42%
0, 100, 65, 15
About UA Red
UA Red (#D9004C) is a color with RGB(217, 0, 76) and HSL(339°, 100%, 42.5%). 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 #00D98D, which creates strong contrast. Its triadic palette includes #4CD900 and #004CD9. The name comes from UA Red (English).
- HEX: #D9004C
- RGB: 217, 0, 76
- HSL: 339°, 100%, 42.5%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #00D98D
- Triadic colors: #4CD900, #004CD9
- The name comes from UA Red (English).
Live Components
Color Palettes
UA Red #D9004C 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
UA Red #D9004C pairs with #00D98D as its complementary color, and #4CD900 and #004CD9 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 University of Arizona's colors, cardinal red and navy blue, were chosen early in the institution's history. While the exact shade may have varied over time due to different dyes and printing processes, the intent to use a vibrant red has been consistent. The specific hex code #d9004c represents the modern, digitally standardized version of this traditional color, ensuring consistency across all university branding and materials. This standardization is a relatively recent development, common among large institutions for brand management.
First Recorded Use
The color red has been associated with the University of Arizona since its early days, though the specific 'UA Red' hex code (#d9004c) is a modern standardization. The university was established in 1885, and red and blue were adopted as official colors by the early 1900s.
Cultural Associations
UA Red is a deeply significant color for the University of Arizona community. It is prominently featured in athletic uniforms (especially for the Arizona Wildcats), academic regalia, university logos, and promotional materials. It evokes school spirit, pride, and a sense of belonging among students, alumni, faculty, and fans. The color is synonymous with the university's identity and traditions.
Code Snippets
/* Background */
.element {
background-color: #D9004C;
}
/* Text */
.element {
color: #D9004C;
}
/* Border */
.element {
border: 1px solid #D9004C;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#D9004C,
#00D98D
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#D9004C,
#00D98D
);
}
// SCSS variable
$ua-red: #D9004C;
// With RGB channels (useful for rgba() usage)
$ua-red-r: 217;
$ua-red-g: 0;
$ua-red-b: 76;
// Usage
.element {
background-color: $ua-red;
color: rgba($ua-red-r, $ua-red-g, $ua-red-b, 0.8);
}