Carolina Blue
HEX: #56A0D3 | Modern Palette
Color Specifications
#56A0D3
86, 160, 211
204°, 59% ,82%
59.24, 24.17, 0, 17.25
About Carolina Blue
Carolina Blue (#56A0D3) is a color with RGB(86, 160, 211) and HSL(204.48°, 59.24%, 82.75%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #D38956, which creates strong contrast. Its triadic palette includes #D356A0 and #A0D356. The name comes from Carolina Blue (English).
- HEX: #56A0D3
- RGB: 86, 160, 211
- HSL: 204.48°, 59.24%, 82.75%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #D38956
- Triadic colors: #D356A0, #A0D356
- The name comes from Carolina Blue (English).
Live Components
Color Palettes
Carolina Blue #56A0D3 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 #56A0D3 pairs with #D38956 as its complementary color, and #D356A0 and #A0D356 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#8F8FD4
#9A9AD3
#41A8A8
#999999
Frequently Asked Questions
Name, History & Etymology
History
The color light blue, paired with white, was adopted as the official color of the University of North Carolina at Chapel Hill in 1889. The choice was inspired by the colors of the Philanthropic and Dialectic Societies, two prominent student literary societies at the university, which used light blue and white respectively. Over the decades, this specific shade of light blue became known colloquially and then officially as 'Carolina Blue.' It is deeply ingrained in the university's identity, appearing on athletic uniforms, merchandise, and branding. The hex code #56a0d3 is one of the commonly accepted digital representations of this color.
First Recorded Use
The exact first documented use of the term 'Carolina Blue' to refer to the specific shade is difficult to pinpoint precisely, but the color itself became associated with the university in the late 19th century. Early references to the university's colors often mentioned 'light blue' or 'sky blue' alongside white. The specific 'Carolina Blue' designation solidified over time.
Cultural Associations
Carolina Blue is an iconic color in American collegiate sports and culture, particularly in the state of North Carolina. It is synonymous with the University of North Carolina at Chapel Hill (UNC) and its athletic teams, the Tar Heels. The color evokes strong loyalty and pride among alumni, students, and fans. It is a central element in the fierce rivalry between UNC and Duke University, whose primary color is a darker blue. The term 'Carolina Blue' is widely recognized even outside of direct university affiliation due to the prominence of UNC's athletic programs, especially its basketball team.
Code Snippets
/* Background */
.element {
background-color: #56A0D3;
}
/* Text */
.element {
color: #56A0D3;
}
/* Border */
.element {
border: 1px solid #56A0D3;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#56A0D3,
#EDCEB9
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#56A0D3,
#EDCEB9
);
}
// SCSS variable
$carolina-blue: #56A0D3;
// With RGB channels (useful for rgba() usage)
$carolina-blue-r: 86;
$carolina-blue-g: 160;
$carolina-blue-b: 211;
// Usage
.element {
background-color: $carolina-blue;
color: rgba($carolina-blue-r, $carolina-blue-g, $carolina-blue-b, 0.8);
}