UCLA Blue
HEX: #536895 | Modern Palette
Color Specifications
#536895
83, 104, 149
220°, 44% ,58%
44.3, 30.2, 0, 41.57
About UCLA Blue
UCLA Blue (#536895) is a color with RGB(83, 104, 149) and HSL(220.91°, 44.3%, 58.43%). It is commonly associated with Calm moods. In design, it fits Cool styles and is suitable for Text, Logo, Print. Its complementary color is #958053, which creates strong contrast. Its triadic palette includes #955368 and #689553. The name comes from UCLA Blue (English).
- HEX: #536895
- RGB: 83, 104, 149
- HSL: 220.91°, 44.3%, 58.43%
- Mood: Calm
- Style: Cool
- Use case: Text, Logo, Print
- Complementary color: #958053
- Triadic colors: #955368, #689553
- The name comes from UCLA 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 #536895 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The University of California, Los Angeles (UCLA) was established in 1919. From its early days, blue and gold were adopted as the official university colors, mirroring those of the broader University of California system. Over time, specific shades became standardized for branding, merchandise, and athletic uniforms. 'UCLA Blue' refers to the particular shade of blue (often specified by Pantone or hex codes like #536895) that is officially used and recognized by the university.
First Recorded Use
While the university was founded in 1919, the specific 'UCLA Blue' as a defined color likely solidified in the decades following, particularly as branding and athletic identities became more formalized. The earliest references to 'blue' as a university color would be from its inception.
Cultural Associations
UCLA Blue is deeply ingrained in the identity of UCLA. It is prominently featured in the university's logo, athletic uniforms (for teams like the Bruins), graduation regalia, and campus signage. It evokes a sense of tradition, academic excellence, and athletic prowess associated with one of the world's leading public universities. For alumni, students, and fans, it is a strong symbol of affiliation and pride.
Code Snippets
/* Background */
.element {
background-color: #536895;
}
/* Text */
.element {
color: #536895;
}
/* Border */
.element {
border: 1px solid #536895;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#536895,
#C4A666
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#536895,
#C4A666
);
}
// SCSS variable
$ucla-blue: #536895;
// With RGB channels (useful for rgba() usage)
$ucla-blue-r: 83;
$ucla-blue-g: 104;
$ucla-blue-b: 149;
// Usage
.element {
background-color: $ucla-blue;
color: rgba($ucla-blue-r, $ucla-blue-g, $ucla-blue-b, 0.8);
}