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

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

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

Mood
Style
Cool

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.

Similar Named Colors

Very Light Azure #74BBFB ΔE 2.71
Jordy Blue #8AB9F1 ΔE 2.87
Aero #7CB9E8 ΔE 4.11
Light Cobalt Blue #88ACE0 ΔE 5.43

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);
}