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
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 #99BADD from deepest shade to lightest tint.
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);
}