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
Diamond #B9F2FF 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
Diamond #B9F2FF pairs with #FFC6B9 as its complementary color, and #FFB9F2 and #F2FFB9 in triadic combinations. These harmony relationships help create balanced color combinations for UI, branding, and design work.
Color Characteristics
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.
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);
}