University Of California Gold
HEX: #B78727 | Modern Palette
Color Specifications
#B78727
183, 135, 39
40°, 64% ,43%
0, 26, 79, 28
About University Of California Gold
University Of California Gold (#B78727) is a color with RGB(183, 135, 39) and HSL(40°, 64.9%, 43.5%). In design, it fits Warm styles and is suitable for Text, Button, Accent. Its complementary color is #2757B7, which creates strong contrast. Its triadic palette includes #27B787 and #8727B7. The name comes from Gold (English).
- HEX: #B78727
- RGB: 183, 135, 39
- HSL: 40°, 64.9%, 43.5%
- Style: Warm
- Use case: Text, Button, Accent
- Complementary color: #2757B7
- Triadic colors: #27B787, #8727B7
- The name comes from Gold (English).
Live Components
Color Palettes
University Of California Gold #B78727 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
University Of California Gold #B78727 pairs with #2757B7 as its complementary color, and #27B787 and #8727B7 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 choice of blue and gold for the University of California system, particularly Berkeley, dates back to the late 19th century. Blue was chosen to represent the California sky and the Pacific Ocean, while gold symbolized the 'Golden State' of California, its mineral wealth (from the Gold Rush), and the 'golden' opportunities offered by the university. The specific hex code #b78727 is a standardized digital representation used for branding consistency across the UC system in contemporary times, ensuring a consistent visual identity across all campuses and digital platforms.
First Recorded Use
The University of California, Berkeley, officially adopted blue and gold as its colors in 1895. The specific shade 'University Of California Gold' (#b78727) is a modern digital representation of this long-standing tradition.
Cultural Associations
This specific shade of gold is deeply embedded in the identity of the University of California system. It evokes a sense of tradition, academic excellence, and the pioneering spirit of California. It is prominently featured in university logos, athletic uniforms, graduation regalia, and official publications, making it instantly recognizable to students, alumni, and the public as a symbol of the UC system.
Code Snippets
/* Background */
.element {
background-color: #B78727;
}
/* Text */
.element {
color: #B78727;
}
/* Border */
.element {
border: 1px solid #B78727;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#B78727,
#2757B7
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#B78727,
#2757B7
);
}
// SCSS variable
$university-of-california-gold: #B78727;
// With RGB channels (useful for rgba() usage)
$university-of-california-gold-r: 183;
$university-of-california-gold-g: 135;
$university-of-california-gold-b: 39;
// Usage
.element {
background-color: $university-of-california-gold;
color: rgba($university-of-california-gold-r, $university-of-california-gold-g, $university-of-california-gold-b, 0.8);
}