UA Blue
HEX: #0033AA | Modern Palette
Color Specifications
#0033AA
0, 51, 170
222°, 100% ,66%
100, 70, 0, 33.33
About UA Blue
UA Blue (#0033AA) is a color with RGB(0, 51, 170) and HSL(222°, 100%, 66.67%). It is commonly associated with Bold, Playful moods. In design, it fits Vivid, Neon styles and is suitable for Text, Button, Accent. Its complementary color is #AA7700, which creates strong contrast. Its triadic palette includes #AA0033 and #33AA00. The name comes from UA Blue (English).
- HEX: #0033AA
- RGB: 0, 51, 170
- HSL: 222°, 100%, 66.67%
- Mood: Bold, Playful
- Style: Vivid, Neon
- Use case: Text, Button, Accent
- Complementary color: #AA7700
- Triadic colors: #AA0033, #33AA00
- The name comes from UA Blue (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 #0033AA from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The University of Arizona (UA) was established in 1885. Its official colors, cardinal red and navy blue, were chosen early in its history. The blue, often referred to as 'UA Blue,' represents the Arizona sky. Over the decades, the specific shade has been refined and standardized for consistent branding across all university materials, from athletic uniforms to official publications and digital media. The hex code #0033aa is one of the officially recognized digital representations of this color.
First Recorded Use
While the exact 'first use' of the specific hex code #0033aa as 'UA Blue' is difficult to pinpoint precisely, the University of Arizona adopted blue and red as its official colors shortly after its founding in 1885. The specific shade would have been standardized over time, especially with the advent of digital design and branding guidelines.
Cultural Associations
UA Blue is a deeply ingrained part of the University of Arizona's identity and culture. It is prominently featured in all aspects of university life, including: - **Athletics:** Worn by all UA sports teams (Arizona Wildcats). - **Branding:** Used in the university's logo, seal, and all official communications. - **Campus Environment:** Visible in signage, buildings, and merchandise across campus. - **Community Identity:** Recognized by alumni, students, faculty, and the Tucson community as a symbol of the university. It evokes a sense of pride, tradition, and belonging among those associated with the institution.
Code Snippets
/* Background */
.element {
background-color: #0033AA;
}
/* Text */
.element {
color: #0033AA;
}
/* Border */
.element {
border: 1px solid #0033AA;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#0033AA,
#FFCC55
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#0033AA,
#FFCC55
);
}
// SCSS variable
$ua-blue: #0033AA;
// With RGB channels (useful for rgba() usage)
$ua-blue-r: 0;
$ua-blue-g: 51;
$ua-blue-b: 170;
// Usage
.element {
background-color: $ua-blue;
color: rgba($ua-blue-r, $ua-blue-g, $ua-blue-b, 0.8);
}