Columbia Blue
HEX: #C4D8E2 | Modern Palette
Color Specifications
#C4D8E2
196, 216, 226
200°, 13% ,88%
13.27, 4.42, 0, 11.37
About Columbia Blue
Columbia Blue (#C4D8E2) is a color with RGB(196, 216, 226) and HSL(200°, 13.27%, 88.63%). It is commonly associated with Minimal moods. In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #E2CEC4, which creates strong contrast. Its triadic palette includes #E2C4D8 and #D8E2C4. The name comes from Columbia Blue (English).
- HEX: #C4D8E2
- RGB: 196, 216, 226
- HSL: 200°, 13.27%, 88.63%
- Mood: Minimal
- Style: Pastel, Cool
- Use case: Text, Background, Print
- Complementary color: #E2CEC4
- Triadic colors: #E2C4D8, #D8E2C4
- The name comes from Columbia 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 #C4D8E2 from deepest shade to lightest tint.
Frequently Asked Questions
Name, History & Etymology
History
Columbia University officially adopted light blue as its color in 1890. The specific shade, often referred to as 'Columbia Blue,' became a prominent identifier for the university's athletic teams, academic regalia, and branding. While many universities use blue, Columbia's shade is distinctively light and airy. Over time, the color has been standardized, with #c4d8e2 being a common digital representation. It is deeply ingrained in the university's identity and traditions.
First Recorded Use
The exact first documented use of the name 'Columbia Blue' for this specific hex code is difficult to pinpoint precisely, but the color itself became associated with Columbia University in the late 19th century, with official adoption around 1890.
Cultural Associations
Columbia Blue is primarily recognized within the context of Columbia University in New York City. It is seen on university merchandise, sports uniforms (especially for the Columbia Lions), graduation gowns, and official publications. For alumni and students, it evokes a sense of pride, tradition, and affiliation with the Ivy League institution. Outside of this specific context, it is simply a light blue color, without significant broader cultural connotations.
Code Snippets
/* Background */
.element {
background-color: #C4D8E2;
}
/* Text */
.element {
color: #C4D8E2;
}
/* Border */
.element {
border: 1px solid #C4D8E2;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#C4D8E2,
#E6E1DE
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#C4D8E2,
#E6E1DE
);
}
// SCSS variable
$columbia-blue: #C4D8E2;
// With RGB channels (useful for rgba() usage)
$columbia-blue-r: 196;
$columbia-blue-g: 216;
$columbia-blue-b: 226;
// Usage
.element {
background-color: $columbia-blue;
color: rgba($columbia-blue-r, $columbia-blue-g, $columbia-blue-b, 0.8);
}