UCLA Gold
HEX: #FFB300 | Modern Palette
Color Specifications
#FFB300
255, 179, 0
42°, 100% ,50%
0, 30, 100, 0
About UCLA Gold
UCLA Gold (#FFB300) is a color with RGB(255, 179, 0) and HSL(42.1°, 100%, 50%). 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 #004CFF, which creates strong contrast. Its triadic palette includes #00FFB3 and #B300FF. The name comes from UCLA Gold (English).
- HEX: #FFB300
- RGB: 255, 179, 0
- HSL: 42.1°, 100%, 50%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: #004CFF
- Triadic colors: #00FFB3, #B300FF
- The name comes from UCLA Gold (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 #FFB300 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
The colors blue and gold have been associated with the University of California system since its early days. UCLA, upon its establishment as the southern branch of the University of California, adopted these colors. The specific shade of 'UCLA Gold' (often represented by hex #FFB300 or similar) evolved over time to become a distinct part of the university's brand identity. It is prominently featured in athletic uniforms, university branding, merchandise, and official publications. The gold represents the Golden State of California, the sunshine, and the pursuit of excellence.
First Recorded Use
1920s
Cultural Associations
UCLA Gold is a highly recognizable color for alumni, students, and fans of the University of California, Los Angeles. It evokes a sense of pride, tradition, and academic and athletic achievement. It is often seen in conjunction with 'UCLA Blue' (a dark royal blue). The color is deeply embedded in the university's visual culture and is a key component of its brand identity, symbolizing its prestige and sunny California location.
Code Snippets
/* Background */
.element {
background-color: #FFB300;
}
/* Text */
.element {
color: #FFB300;
}
/* Border */
.element {
border: 1px solid #FFB300;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#FFB300,
#004CFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#FFB300,
#004CFF
);
}
// SCSS variable
$ucla-gold: #FFB300;
// With RGB channels (useful for rgba() usage)
$ucla-gold-r: 255;
$ucla-gold-g: 179;
$ucla-gold-b: 0;
// Usage
.element {
background-color: $ucla-gold;
color: rgba($ucla-gold-r, $ucla-gold-g, $ucla-gold-b, 0.8);
}