Columbia Blue
HEX: #9BDDFF | Modern Palette
Color Specifications
#9BDDFF
155, 221, 255
200°, 39% ,100%
39.22, 13.33, 0, 0
About Columbia Blue
Columbia Blue (#9BDDFF) is a color with RGB(155, 221, 255) and HSL(200.4°, 39.22%, 100%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #FFBD9B, which creates strong contrast. Its triadic palette includes #FF9BDD and #DDFF9B. The name comes from Columbia Blue (English).
- HEX: #9BDDFF
- RGB: 155, 221, 255
- HSL: 200.4°, 39.22%, 100%
- Style: Cool
- Use case: Text, Background, Print
- Complementary color: #FFBD9B
- Triadic colors: #FF9BDD, #DDFF9B
- The name comes from Columbia Blue (English).
Live Components
Color Palettes
Columbia Blue #9BDDFF 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
Columbia Blue #9BDDFF pairs with #FFBD9B as its complementary color, and #FF9BDD and #DDFF9B in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#CDCDFF
#D7D7FF
#93E2E2
#D4D4D4
Frequently Asked Questions
Name, History & Etymology
History
Columbia University, founded in 1754 as King's College, adopted light blue as its official color. While the exact shade may have varied slightly over time, the 'Columbia Blue' we recognize today (often specified as #9bddff or similar light blue) became firmly established as the university's representative hue. It is prominently featured in their athletic uniforms, academic regalia, and branding. The color is a significant part of the university's identity and tradition.
First Recorded Use
The exact first documented use of 'Columbia Blue' as a specific color name is difficult to pinpoint precisely, but its association with Columbia University and its athletic teams solidified in the late 19th century, particularly after the university officially adopted light blue as its color.
Cultural Associations
Columbia Blue is primarily recognized in academic and collegiate contexts, specifically within the United States. It is a strong symbol for Columbia University and its alumni, representing academic excellence, tradition, and athletic spirit. It is less commonly recognized as a standalone color name outside of this specific institutional context, unlike more generic color names like 'sky blue' or 'light blue'.
Code Snippets
/* Background */
.element {
background-color: #9BDDFF;
}
/* Text */
.element {
color: #9BDDFF;
}
/* Border */
.element {
border: 1px solid #9BDDFF;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#9BDDFF,
#FFFFFF
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#9BDDFF,
#FFFFFF
);
}
// SCSS variable
$columbia-blue: #9BDDFF;
// With RGB channels (useful for rgba() usage)
$columbia-blue-r: 155;
$columbia-blue-g: 221;
$columbia-blue-b: 255;
// Usage
.element {
background-color: $columbia-blue;
color: rgba($columbia-blue-r, $columbia-blue-g, $columbia-blue-b, 0.8);
}