French Sky Blue
HEX: #77B5FE | Modern Palette
On White
2.14:1
FAIL
On Black
9.83:1
PASS
Color Specifications
HEX
#77B5FE
RGB
119, 181, 254
HSL
212°, 53% ,99%
CMYK
53.15, 28.74, 0, 0.39
About French Sky Blue
French Sky Blue (#77B5FE) is a color with RGB(119, 181, 254) and HSL(212.44°, 53.15%, 99.61%). In design, it fits Cool styles and is suitable for Text, Button, Background. Its complementary color is #FEC077, which creates strong contrast. Its triadic palette includes #FE77B5 and #B5FE77.
- HEX: #77B5FE
- RGB: 119, 181, 254
- HSL: 212.44°, 53.15%, 99.61%
- Style: Cool
- Use case: Text, Button, Background
- Complementary color: #FEC077
- Triadic colors: #FE77B5, #B5FE77
Live Components
LIGHT
DARK
System Notification Box
Color Palettes
French Sky Blue #77B5FE is used in Monochromatic, Neutral + Accent, Analogous, 3 + 1 + 1 palettes, giving designers ready-made combinations for backgrounds, surfaces, accents, and interface elements.
Monochromatic
Five tones of the same hue — a reliable scale for backgrounds, surfaces, and text.
Neutral + Accent
Four near-neutral tones grounded by a saturated accent — clean and versatile for UI.
Analogous
Five hues drifting across a 60° arc — naturally harmonious and pleasing to the eye.
3 + 1 + 1
Three analogous base colors, one complementary accent, one dark anchor — bold yet balanced.
Color Harmonies
French Sky Blue #77B5FE pairs with #FEC077 as its complementary color, and #FE77B5 and #B5FE77 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
Accessibility Simulation
Deuteranopia
#A6A6FF
Protanopia
#B0B0FE
Tritanopia
#5FC0C0
Achromatopsia
#B1B1B1
Frequently Asked Questions
French Sky Blue (#77B5FE) is a color with RGB(119, 181, 254) and HSL(212.44°, 53.15%, 99.61%).
#77B5FE pairs strongly with #FEC077 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.
#77B5FE is suitable for Text, Button, Background and works well with Cool styles.
Code Snippets
/* Background */
.element {
background-color: #77B5FE;
}
/* Text */
.element {
color: #77B5FE;
}
/* Border */
.element {
border: 1px solid #77B5FE;
}
/* Linear gradient to complementary */
.element {
background: linear-gradient(
to right,
#77B5FE,
#FFFEFD
);
}
/* Radial gradient */
.element {
background: radial-gradient(
circle,
#77B5FE,
#FFFEFD
);
}
// SCSS variable
$french-sky-blue: #77B5FE;
// With RGB channels (useful for rgba() usage)
$french-sky-blue-r: 119;
$french-sky-blue-g: 181;
$french-sky-blue-b: 254;
// Usage
.element {
background-color: $french-sky-blue;
color: rgba($french-sky-blue-r, $french-sky-blue-g, $french-sky-blue-b, 0.8);
}