Boston University Red
HEX: #CC0000 | Modern Palette
Color Specifications
#CC0000
204, 0, 0
0°, 100% ,40%
0, 100, 100, 20
About Boston University Red
Boston University Red (#CC0000) is a color with RGB(204, 0, 0) and HSL(0°, 100%, 40%). 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 Robin Egg Blue (#00CCCC), which creates strong contrast. Its triadic palette includes #00CC00 and #0000CC. The name comes from Boston University Red (English).
- HEX: #CC0000
- RGB: 204, 0, 0
- HSL: 0°, 100%, 40%
- Mood: Energetic, Bold
- Style: Vivid, Warm
- Use case: Text, Button, Accent
- Complementary color: Robin Egg Blue (#00CCCC)
- Triadic colors: #00CC00, #0000CC
- The name comes from Boston University Red (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 #CC0000 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Boston University's official colors are scarlet and white. Scarlet has been a prominent color for the university since its early days, reflecting a common choice for academic institutions. The specific shade represented by #cc0000 is a modern digital interpretation of this traditional scarlet. Universities often standardize their colors for branding purposes across all media, from athletic uniforms to official publications and websites. This standardization ensures consistent visual identity.
First Recorded Use
While the exact first use of the specific hex code #cc0000 as 'Boston University Red' is difficult to pinpoint, the university's colors (scarlet and white) were established much earlier. The specific digital representation likely solidified with the rise of digital branding and web design, probably in the late 1990s or early 2000s.
Cultural Associations
This color is deeply ingrained in the identity of Boston University. It is prominently featured in the university's logo, athletic team uniforms (the Boston University Terriers), merchandise, and campus signage. For students, alumni, and faculty, 'Boston University Red' evokes a sense of belonging, school spirit, and tradition. It is a key visual identifier for the institution.
Code Snippets
/* Background */
.element {
background-color: #CC0000;
}
/* Text */
.element {
color: #CC0000;
}
/* Border */
.element {
border: 1px solid #CC0000;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#CC0000,
#00CCCC
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#CC0000,
#00CCCC
);
}
// SCSS variable
$boston-university-red: #CC0000;
// With RGB channels (useful for rgba() usage)
$boston-university-red-r: 204;
$boston-university-red-g: 0;
$boston-university-red-b: 0;
// Usage
.element {
background-color: $boston-university-red;
color: rgba($boston-university-red-r, $boston-university-red-g, $boston-university-red-b, 0.8);
}