#b89dae hex color information.
RGB value of #b89dae is (184,157,174)
Change page background color to #b89dae
| Reset
| RGB | 184 | 157 | 174 |
|---|---|---|---|
| HSL | 0.90 | 0.16 | 0.67 |
| HSV | 322° | 15° | 72° |
| CMYK | 0.00 | 0.15 | 0.05 0.28 |
| XYZ | 39.4641 | 37.3603 | 45.1757 |
| Yxy | 37.3603 | 0.3235 | 0.3062 |
| Hunter Lab | 61.1231 | 8.2831 | -1.0347 |
| CIE-Lab | 67.5465 | 12.8994 | -5.1233 |
#b89dae hex color red value is 184, green value is 157 and the blue value of its RGB is 157. Cylindrical-coordinate representations (also known as HSL) of color #b89dae hue: 0.90 , saturation: 0.16 and the lightness value of b89dae is 0.67.
The process color (four color CMYK) of #b89dae hex color is 0.00, 0.15, 0.05, 0.28. Web safe color of #b89dae is #cc9999
Color #b89dae contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10111000 | 10011101 | 10101110 |
| Octal | 270 | 235 | 256 |
| Decimal | 184 | 157 | 174 |
| Hexadecimal | B8 | 9D | AE |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#b89dae; }
.myforecolor {color:#b89dae; }
.mybordercolor {border:3px solid #b89dae; }
This sample text font color is #b89dae
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
<p style="color:#b89dae">Text here</p>
This div background color is #b89dae
<div style="background-color:#b89dae">
Div content here</div>
This div border color is #b89dae
<div style="border:3px solid #b89dae">
Div here</div>
| #b89dae | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(184,157,174, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #b89dae;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #b89dae;
-webkit-box-shadow: 1px 1px 3px 2px #b89dae;
box-shadow: 1px 1px 3px 2px #b89dae;
}
<p style="text-shadow: 4px 4px 2px rgba(184,157,174, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #b89dae">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #b89dae
<div style="-moz-box-shadow: 1px 1px 3px 2px #b89dae; -webkit-box-shadow: 1px 1px 3px 2px #b89dae; box-shadow: 1px 1px 3px 2px #b89dae;">
Div content here</div>