#10000c hex color information.
RGB value of #10000c is (16,0,12)
Change page background color to #10000c
| Reset
| RGB | 16 | 0 | 12 |
|---|---|---|---|
| HSL | 0.88 | 1.00 | 0.03 |
| HSV | 315° | 100° | 6° |
| CMYK | 0.00 | 1.00 | 0.25 0.94 |
| XYZ | 0.2800 | 0.1367 | 0.3595 |
| Yxy | 0.1367 | 0.3607 | 0.1761 |
| Hunter Lab | 3.6973 | 7.0477 | -3.1768 |
| CIE-Lab | 1.2348 | 6.1475 | -3.0131 |
#10000c hex color red value is 16, green value is 0 and the blue value of its RGB is 0. Cylindrical-coordinate representations (also known as HSL) of color #10000c hue: 0.88 , saturation: 1.00 and the lightness value of 10000c is 0.03.
The process color (four color CMYK) of #10000c hex color is 0.00, 1.00, 0.25, 0.94. Web safe color of #10000c is #000000
Color #10000c contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00010000 | 00000000 | 00001100 |
| Octal | 20 | 0 | 14 |
| Decimal | 16 | 0 | 12 |
| Hexadecimal | 10 | 0 | C |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#10000c; }
.myforecolor {color:#10000c; }
.mybordercolor {border:3px solid #10000c; }
This sample text font color is #10000c
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:#10000c">Text here</p>
This div background color is #10000c
<div style="background-color:#10000c">
Div content here</div>
This div border color is #10000c
<div style="border:3px solid #10000c">
Div here</div>
| #10000c | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(16,0,12, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #10000c;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #10000c;
-webkit-box-shadow: 1px 1px 3px 2px #10000c;
box-shadow: 1px 1px 3px 2px #10000c;
}
<p style="text-shadow: 4px 4px 2px rgba(16,0,12, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #10000c">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #10000c
<div style="-moz-box-shadow: 1px 1px 3px 2px #10000c; -webkit-box-shadow: 1px 1px 3px 2px #10000c; box-shadow: 1px 1px 3px 2px #10000c;">
Div content here</div>