Diamond
HEX: #B9F2FF | Modern Palette
Color Specifications
#B9F2FF
185, 242, 255
191°, 27% ,100%
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
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 #B9F2FF from deepest shade to lightest tint.
Color Characteristics
Accessibility Simulation
#E3E3FF
#EDEDFF
#B6F4F4
#E8E8E8
Frequently Asked Questions
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);
}