#b3b8ba hex color information.
RGB value of #b3b8ba is (179,184,186)
Change page background color to #b3b8ba
| Reset
| RGB | 179 | 184 | 186 |
|---|---|---|---|
| HSL | 0.55 | 0.05 | 0.72 |
| HSV | 197° | 4° | 73° |
| CMYK | 0.04 | 0.01 | 0.00 0.27 |
| XYZ | 44.5938 | 47.4099 | 53.2550 |
| Yxy | 47.4099 | 0.3070 | 0.3264 |
| Hunter Lab | 68.8548 | -4.8906 | 2.3412 |
| CIE-Lab | 74.4512 | -1.3541 | -1.6281 |
#b3b8ba hex color red value is 179, green value is 184 and the blue value of its RGB is 184. Cylindrical-coordinate representations (also known as HSL) of color #b3b8ba hue: 0.55 , saturation: 0.05 and the lightness value of b3b8ba is 0.72.
The process color (four color CMYK) of #b3b8ba hex color is 0.04, 0.01, 0.00, 0.27. Web safe color of #b3b8ba is #cccccc
Color #b3b8ba contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10110011 | 10111000 | 10111010 |
| Octal | 263 | 270 | 272 |
| Decimal | 179 | 184 | 186 |
| Hexadecimal | B3 | B8 | BA |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#b3b8ba; }
.myforecolor {color:#b3b8ba; }
.mybordercolor {border:3px solid #b3b8ba; }
This sample text font color is #b3b8ba
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:#b3b8ba">Text here</p>
This div background color is #b3b8ba
<div style="background-color:#b3b8ba">
Div content here</div>
This div border color is #b3b8ba
<div style="border:3px solid #b3b8ba">
Div here</div>
| #b3b8ba | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(179,184,186, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #b3b8ba;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #b3b8ba;
-webkit-box-shadow: 1px 1px 3px 2px #b3b8ba;
box-shadow: 1px 1px 3px 2px #b3b8ba;
}
<p style="text-shadow: 4px 4px 2px rgba(179,184,186, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #b3b8ba">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #b3b8ba
<div style="-moz-box-shadow: 1px 1px 3px 2px #b3b8ba; -webkit-box-shadow: 1px 1px 3px 2px #b3b8ba; box-shadow: 1px 1px 3px 2px #b3b8ba;">
Div content here</div>