#bb161c hex color information.
RGB value of #bb161c is (187,22,28)
Change page background color to #bb161c
| Reset
| RGB | 187 | 22 | 28 |
|---|---|---|---|
| HSL | 0.99 | 0.79 | 0.41 |
| HSV | 358° | 88° | 73° |
| CMYK | 0.00 | 0.88 | 0.85 0.27 |
| XYZ | 20.9900 | 11.2225 | 2.1585 |
| Yxy | 11.2225 | 0.6107 | 0.3265 |
| Hunter Lab | 33.5000 | 53.2172 | 19.6298 |
| CIE-Lab | 39.9527 | 61.0478 | 42.3415 |
#bb161c hex color red value is 187, green value is 22 and the blue value of its RGB is 22. Cylindrical-coordinate representations (also known as HSL) of color #bb161c hue: 0.99 , saturation: 0.79 and the lightness value of bb161c is 0.41.
The process color (four color CMYK) of #bb161c hex color is 0.00, 0.88, 0.85, 0.27. Web safe color of #bb161c is #cc0033
Color #bb161c contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 10111011 | 00010110 | 00011100 |
| Octal | 273 | 26 | 34 |
| Decimal | 187 | 22 | 28 |
| Hexadecimal | BB | 16 | 1C |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#bb161c; }
.myforecolor {color:#bb161c; }
.mybordercolor {border:3px solid #bb161c; }
This sample text font color is #bb161c
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:#bb161c">Text here</p>
This div background color is #bb161c
<div style="background-color:#bb161c">
Div content here</div>
This div border color is #bb161c
<div style="border:3px solid #bb161c">
Div here</div>
| #bb161c | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(187,22,28, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #bb161c;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #bb161c;
-webkit-box-shadow: 1px 1px 3px 2px #bb161c;
box-shadow: 1px 1px 3px 2px #bb161c;
}
<p style="text-shadow: 4px 4px 2px rgba(187,22,28, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #bb161c">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #bb161c
<div style="-moz-box-shadow: 1px 1px 3px 2px #bb161c; -webkit-box-shadow: 1px 1px 3px 2px #bb161c; box-shadow: 1px 1px 3px 2px #bb161c;">
Div content here</div>