French Sky Blue
HEX: #77B5FE | Modern Palette
Color Specifications
#77B5FE
119, 181, 254
212°, 53% ,99%
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
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 #77B5FE from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#A6A6FF
#B0B0FE
#5FC0C0
#B1B1B1
Frequently Asked Questions
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);
}