Ball Blue
HEX: #21ABCD | Modern Palette
Color Specifications
#21ABCD
33, 171, 205
191°, 83% ,80%
83.9, 16.59, 0, 19.61
About Ball Blue
Ball Blue (#21ABCD) is a color with RGB(33, 171, 205) and HSL(191.86°, 83.9%, 80.39%). It is commonly associated with Playful moods. In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #CD4321, which creates strong contrast. Its triadic palette includes #CD21AB and #ABCD21. The name comes from Ball Blue (English).
- HEX: #21ABCD
- RGB: 33, 171, 205
- HSL: 191.86°, 83.9%, 80.39%
- Mood: Playful
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #CD4321
- Triadic colors: #CD21AB, #ABCD21
- The name comes from Ball 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 #21ABCD from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#9393CE
#A3A3CD
#00B0B0
#9D9D9D
Frequently Asked Questions
Name, History & Etymology
History
Ball Corporation, founded in 1880, became famous for its glass canning jars. While they produced clear jars, a distinctive aqua or light blue-green tint became iconic. This color was often due to impurities in the sand used to make the glass, particularly iron, which would impart a blue-green hue when combined with other elements and the manufacturing process. Over time, this specific shade became so associated with the brand that 'Ball Blue' became a common descriptor for similar colors, especially in crafts, painting, and home decor. Later, Ball Corporation also intentionally produced jars in this color due to its popularity.
First Recorded Use
The term 'Ball Blue' likely emerged shortly after the widespread popularity of Ball canning jars, which became prominent in the late 19th and early 20th centuries. The specific blue tint of these jars became a recognizable characteristic.
Cultural Associations
Ball Blue evokes a sense of nostalgia, Americana, and domesticity, particularly in the context of home canning, preserving, and vintage aesthetics. It is often associated with farmhouse decor, rustic styles, and DIY culture. The color is seen as comforting, classic, and authentic. It's a popular color in vintage-inspired products, craft supplies, and interior design themes aiming for a 'shabby chic' or country feel.
Code Snippets
/* Background */
.element {
background-color: #21ABCD;
}
/* Text */
.element {
color: #21ABCD;
}
/* Border */
.element {
border: 1px solid #21ABCD;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#21ABCD,
#F7B4A3
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#21ABCD,
#F7B4A3
);
}
// SCSS variable
$ball-blue: #21ABCD;
// With RGB channels (useful for rgba() usage)
$ball-blue-r: 33;
$ball-blue-g: 171;
$ball-blue-b: 205;
// Usage
.element {
background-color: $ball-blue;
color: rgba($ball-blue-r, $ball-blue-g, $ball-blue-b, 0.8);
}