Jordy Blue
HEX: #8AB9F1 | Modern Palette
Color Specifications
#8AB9F1
138, 185, 241
212°, 42% ,94%
42.74, 23.24, 0, 5.49
About Jordy Blue
Jordy Blue (#8AB9F1) is a color with RGB(138, 185, 241) and HSL(212.62°, 42.74%, 94.51%). In design, it fits Cool styles and is suitable for Text, Background, Print. Its complementary color is #F1C28A, which creates strong contrast. Its triadic palette includes #F18AB9 and #B9F18A. The name comes from Jordy Blue (English).
- HEX: #8AB9F1
- RGB: 138, 185, 241
- HSL: 212.62°, 42.74%, 94.51%
- Style: Cool
- Use case: Text, Background, Print
- Complementary color: #F1C28A
- Triadic colors: #F18AB9, #B9F18A
- The name comes from Jordy Blue (English).
Live Components
Color Palettes
Jordy Blue #8AB9F1 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
Jordy Blue #8AB9F1 pairs with #F1C28A as its complementary color, and #F18AB9 and #B9F18A in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
#ADADF2
#B5B5F1
#7CC1C1
#B5B5B5
Frequently Asked Questions
Name, History & Etymology
History
Unlike traditional color names derived from natural objects (like 'sky blue' or 'sea green') or dyes, 'Jordy Blue' appears to be a more modern, possibly arbitrary or playfully named shade, common in digital color palettes. Its hexadecimal code #8ab9f1 places it firmly in the realm of computer-defined colors. Many such names are created for specific design systems, software, or web standards to provide a memorable label for a precise color value.
First Recorded Use
The exact 'first use' as a named color is difficult to pinpoint to a single event or year, but it emerged with the proliferation of digital color systems and web design. It's likely a descriptive name given to a specific hexadecimal color code.
Cultural Associations
As a specific, somewhat uncommon named shade, 'Jordy Blue' doesn't carry deep historical or widespread cultural significance in the way primary colors or historically important dyes do. Its cultural relevance is primarily within design, web development, and digital art communities where precise color communication is essential. It might be recognized by designers familiar with certain color libraries or frameworks.
Code Snippets
/* Background */
.element {
background-color: #8AB9F1;
}
/* Text */
.element {
color: #8AB9F1;
}
/* Border */
.element {
border: 1px solid #8AB9F1;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#8AB9F1,
#F7F2EB
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#8AB9F1,
#F7F2EB
);
}
// SCSS variable
$jordy-blue: #8AB9F1;
// With RGB channels (useful for rgba() usage)
$jordy-blue-r: 138;
$jordy-blue-g: 185;
$jordy-blue-b: 241;
// Usage
.element {
background-color: $jordy-blue;
color: rgba($jordy-blue-r, $jordy-blue-g, $jordy-blue-b, 0.8);
}