Carolina Blue
HEX: #99BADD | Modern Palette
Color Specifications
#99BADD
153, 186, 221
210°, 30% ,86%
30.77, 15.84, 0, 13.33
About Carolina Blue
Carolina Blue (#99BADD) is a color with RGB(153, 186, 221) and HSL(210.88°, 30.77%, 86.67%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #DDBC99, which creates strong contrast. Its triadic palette includes #DD99BA and #BADD99. The name comes from Carolina Blue (English).
- HEX: #99BADD
- RGB: 153, 186, 221
- HSL: 210.88°, 30.77%, 86.67%
- Style: Pastel, Cool
- Use case: Text, Background, Print
- Complementary color: #DDBC99
- Triadic colors: #DD99BA, #BADD99
- The name comes from Carolina Blue (English).
Live Components
Color Palettes
Carolina Blue #99BADD 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
Carolina Blue #99BADD pairs with #DDBC99 as its complementary color, and #DD99BA and #BADD99 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#B1B1DE
#B7B7DD
#92BFBF
#B7B7B7
Frequently Asked Questions
Name, History & Etymology
History
The color 'Carolina Blue' is famously associated with the University of North Carolina at Chapel Hill. Its origins trace back to the late 19th century when the university adopted light blue and white as its official colors. The specific shade is said to have been inspired by the color of the sky on a clear day in North Carolina. Over time, this particular shade of light blue became iconic, especially in collegiate sports. While the hex code #99badd is a common digital representation, the exact shade has seen minor variations over the decades, and different manufacturers might produce slightly different interpretations. The university maintains official color guidelines for branding purposes.
First Recorded Use
The exact first use is difficult to pinpoint to a single date, but the color became officially associated with UNC-Chapel Hill in the late 19th century. Early references to 'light blue' or 'sky blue' for the university's athletic teams and publications predate the formal 'Carolina Blue' designation.
Cultural Associations
Carolina Blue is a deeply ingrained cultural symbol in North Carolina, particularly for alumni and fans of UNC-Chapel Hill. It represents the university's academic and athletic excellence, tradition, and spirit. It is prominently featured in university branding, athletic uniforms, merchandise, and even local architecture around Chapel Hill. The color evokes strong feelings of loyalty and pride among its supporters and is instantly recognizable as belonging to UNC. It is also a point of rivalry with other universities, most notably Duke University (whose color is royal blue).
Code Snippets
/* Background */
.element {
background-color: #99BADD;
}
/* Text */
.element {
color: #99BADD;
}
/* Border */
.element {
border: 1px solid #99BADD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#99BADD,
#E7DDD3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#99BADD,
#E7DDD3
);
}
// SCSS variable
$carolina-blue: #99BADD;
// With RGB channels (useful for rgba() usage)
$carolina-blue-r: 153;
$carolina-blue-g: 186;
$carolina-blue-b: 221;
// Usage
.element {
background-color: $carolina-blue;
color: rgba($carolina-blue-r, $carolina-blue-g, $carolina-blue-b, 0.8);
}