#0a0400 hex color information.
RGB value of #0a0400 is (10,4,0)
Change page background color to #0a0400
| Reset
| RGB | 10 | 4 | 0 |
|---|---|---|---|
| HSL | 0.07 | 1.00 | 0.02 |
| HSV | 24° | 100° | 4° |
| CMYK | 0.00 | 0.60 | 1.00 0.96 |
| XYZ | 0.1686 | 0.1514 | 0.0203 |
| Yxy | 0.1514 | 0.4954 | 0.4449 |
| Hunter Lab | 3.8910 | 0.9252 | 2.4144 |
| CIE-Lab | 1.3676 | 1.0118 | 2.0675 |
#0a0400 hex color red value is 10, green value is 4 and the blue value of its RGB is 4. Cylindrical-coordinate representations (also known as HSL) of color #0a0400 hue: 0.07 , saturation: 1.00 and the lightness value of 0a0400 is 0.02.
The process color (four color CMYK) of #0a0400 hex color is 0.00, 0.60, 1.00, 0.96. Web safe color of #0a0400 is #000000
Color #0a0400 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00001010 | 00000100 | 00000000 |
| Octal | 12 | 4 | 0 |
| Decimal | 10 | 4 | 0 |
| Hexadecimal | A | 4 | 0 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#0a0400; }
.myforecolor {color:#0a0400; }
.mybordercolor {border:3px solid #0a0400; }
This sample text font color is #0a0400
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:#0a0400">Text here</p>
This div background color is #0a0400
<div style="background-color:#0a0400">
Div content here</div>
This div border color is #0a0400
<div style="border:3px solid #0a0400">
Div here</div>
| #0a0400 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(10,4,0, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #0a0400;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #0a0400;
-webkit-box-shadow: 1px 1px 3px 2px #0a0400;
box-shadow: 1px 1px 3px 2px #0a0400;
}
<p style="text-shadow: 4px 4px 2px rgba(10,4,0, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #0a0400">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #0a0400
<div style="-moz-box-shadow: 1px 1px 3px 2px #0a0400; -webkit-box-shadow: 1px 1px 3px 2px #0a0400; box-shadow: 1px 1px 3px 2px #0a0400;">
Div content here</div>