Diamond

HEX: #B9F2FF | Modern Palette

On White
1.22:1
FAIL
On Black
17.21:1
PASS

Color Specifications

HEX
#B9F2FF
RGB
185, 242, 255
HSL
191°, 27% ,100%
CMYK
27.45, 5.1, 0, 0

About Diamond

Diamond (#B9F2FF) is a color with RGB(185, 242, 255) and HSL(191.14°, 27.45%, 100%). In design, it fits Pastel, Cool styles and is suitable for Text, Background, Print. Its complementary color is #FFC6B9, which creates strong contrast. Its triadic palette includes #FFB9F2 and #F2FFB9.

  • HEX: #B9F2FF
  • RGB: 185, 242, 255
  • HSL: 191.14°, 27.45%, 100%
  • Style: Pastel, Cool
  • Use case: Text, Background, Print
  • Complementary color: #FFC6B9
  • Triadic colors: #FFB9F2, #F2FFB9

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 #B9F2FF from deepest shade to lightest tint.

Color Characteristics

Mood
Style
Pastel Cool
Use case
Text Background Print

Accessibility Simulation

Deuteranopia #E3E3FF
Protanopia #EDEDFF
Tritanopia #B6F4F4
Achromatopsia #E8E8E8

Frequently Asked Questions

Diamond (#B9F2FF) is a color with RGB(185, 242, 255) and HSL(191.14°, 27.45%, 100%).

#B9F2FF pairs strongly with #FFC6B9 as its complementary color. It can also be used with neutral tones for balanced UI and design layouts.

#B9F2FF is suitable for Text, Background, Print and works well with Pastel, Cool styles.

Similar Named Colors

Blizzard Blue #ACE5EE ΔE 3.33
Fresh Air #A6E7FF ΔE 4.44
Powder Blue #B0E0E6 ΔE 4.65
Non-photo Blue #A4DDED ΔE 4.79

Code Snippets

/* Background */
.element {
    background-color: #B9F2FF;
}

/* Text */
.element {
    color: #B9F2FF;
}

/* Border */
.element {
    border: 1px solid #B9F2FF;
}

/* Linear gradient to complementary */
.element {
    background: linear-gradient(
        to right,
        #B9F2FF,
        #FFFFFF
    );
}

/* Radial gradient */
.element {
    background: radial-gradient(
        circle,
        #B9F2FF,
        #FFFFFF
    );
}

// SCSS variable
$diamond: #B9F2FF;

// With RGB channels (useful for rgba() usage)
$diamond-r: 185;
$diamond-g: 242;
$diamond-b: 255;

// Usage
.element {
    background-color: $diamond;
    color: rgba($diamond-r, $diamond-g, $diamond-b, 0.8);
}