#b09e94 hex color information.
RGB value of #b09e94 is (176,158,148)
Change page background color to #b09e94
| Reset
| RGB | 176 | 158 | 148 |
|---|---|---|---|
| HSL | 0.06 | 0.15 | 0.64 |
| HSV | 21° | 16° | 69° |
| CMYK | 0.00 | 0.10 | 0.16 0.31 |
| XYZ | 35.4767 | 35.8219 | 33.0615 |
| Yxy | 35.8219 | 0.3399 | 0.3433 |
| Hunter Lab | 59.8514 | 1.0653 | 9.1446 |
| CIE-Lab | 66.3836 | 4.9002 | 7.6144 |
#b09e94 hex color red value is 176, green value is 158 and the blue value of its RGB is 158. Cylindrical-coordinate representations (also known as HSL) of color #b09e94 hue: 0.06 , saturation: 0.15 and the lightness value of b09e94 is 0.64.
The process color (four color CMYK) of #b09e94 hex color is 0.00, 0.10, 0.16, 0.31. Web safe color of #b09e94 is #999999
Color #b09e94 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10110000 | 10011110 | 10010100 |
| Octal | 260 | 236 | 224 |
| Decimal | 176 | 158 | 148 |
| Hexadecimal | B0 | 9E | 94 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#b09e94; }
.myforecolor {color:#b09e94; }
.mybordercolor {border:3px solid #b09e94; }
This sample text font color is #b09e94
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:#b09e94">Text here</p>
This div background color is #b09e94
<div style="background-color:#b09e94">
Div content here</div>
This div border color is #b09e94
<div style="border:3px solid #b09e94">
Div here</div>
| #b09e94 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(176,158,148, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #b09e94;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #b09e94;
-webkit-box-shadow: 1px 1px 3px 2px #b09e94;
box-shadow: 1px 1px 3px 2px #b09e94;
}
<p style="text-shadow: 4px 4px 2px rgba(176,158,148, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #b09e94">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #b09e94
<div style="-moz-box-shadow: 1px 1px 3px 2px #b09e94; -webkit-box-shadow: 1px 1px 3px 2px #b09e94; box-shadow: 1px 1px 3px 2px #b09e94;">
Div content here</div>