#0b0b0b hex color information.
RGB value of #0b0b0b is (11,11,11)
Change page background color to #0b0b0b
| Reset
| RGB | 11 | 11 | 11 |
|---|---|---|---|
| HSL | 0.00 | 0.00 | 0.04 |
| HSV | 0° | 0° | 4° |
| CMYK | 0.00 | 0.00 | 0.00 0.96 |
| XYZ | 0.3181 | 0.3347 | 0.3644 |
| Yxy | 0.3347 | 0.3127 | 0.3290 |
| Hunter Lab | 5.7853 | -0.3097 | 0.3152 |
| CIE-Lab | 3.0233 | -0.0009 | 0.0004 |
#0b0b0b hex color red value is 11, green value is 11 and the blue value of its RGB is 11. Cylindrical-coordinate representations (also known as HSL) of color #0b0b0b hue: 0.00 , saturation: 0.00 and the lightness value of 0b0b0b is 0.04.
The process color (four color CMYK) of #0b0b0b hex color is 0.00, 0.00, 0.00, 0.96. Web safe color of #0b0b0b is #000000
Color #0b0b0b rgb is equally color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00001011 | 00001011 | 00001011 |
| Octal | 13 | 13 | 13 |
| Decimal | 11 | 11 | 11 |
| Hexadecimal | B | B | B |
Analogous colors are identical
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#0b0b0b; }
.myforecolor {color:#0b0b0b; }
.mybordercolor {border:3px solid #0b0b0b; }
This sample text font color is #0b0b0b
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:#0b0b0b">Text here</p>
This div background color is #0b0b0b
<div style="background-color:#0b0b0b">
Div content here</div>
This div border color is #0b0b0b
<div style="border:3px solid #0b0b0b">
Div here</div>
| #0b0b0b | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(11,11,11, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #0b0b0b;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #0b0b0b;
-webkit-box-shadow: 1px 1px 3px 2px #0b0b0b;
box-shadow: 1px 1px 3px 2px #0b0b0b;
}
<p style="text-shadow: 4px 4px 2px rgba(11,11,11, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #0b0b0b">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #0b0b0b
<div style="-moz-box-shadow: 1px 1px 3px 2px #0b0b0b; -webkit-box-shadow: 1px 1px 3px 2px #0b0b0b; box-shadow: 1px 1px 3px 2px #0b0b0b;">
Div content here</div>