#01070a hex color information.
RGB value of #01070a is (1,7,10)
Change page background color to #01070a
| Reset
| RGB | 1 | 7 | 10 |
|---|---|---|---|
| HSL | 0.56 | 0.82 | 0.02 |
| HSV | 200° | 90° | 4° |
| CMYK | 0.90 | 0.30 | 0.00 0.96 |
| XYZ | 0.1433 | 0.1803 | 0.3144 |
| Yxy | 0.1803 | 0.2246 | 0.2826 |
| Hunter Lab | 4.2462 | -1.4068 | -1.4177 |
| CIE-Lab | 1.6286 | -1.1498 | -1.6890 |
#01070a hex color red value is 1, green value is 7 and the blue value of its RGB is 7. Cylindrical-coordinate representations (also known as HSL) of color #01070a hue: 0.56 , saturation: 0.82 and the lightness value of 01070a is 0.02.
The process color (four color CMYK) of #01070a hex color is 0.90, 0.30, 0.00, 0.96. Web safe color of #01070a is #000000
Color #01070a contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00000001 | 00000111 | 00001010 |
| Octal | 1 | 7 | 12 |
| Decimal | 1 | 7 | 10 |
| Hexadecimal | 1 | 7 | A |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#01070a; }
.myforecolor {color:#01070a; }
.mybordercolor {border:3px solid #01070a; }
This sample text font color is #01070a
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:#01070a">Text here</p>
This div background color is #01070a
<div style="background-color:#01070a">
Div content here</div>
This div border color is #01070a
<div style="border:3px solid #01070a">
Div here</div>
| #01070a | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(1,7,10, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #01070a;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #01070a;
-webkit-box-shadow: 1px 1px 3px 2px #01070a;
box-shadow: 1px 1px 3px 2px #01070a;
}
<p style="text-shadow: 4px 4px 2px rgba(1,7,10, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #01070a">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #01070a
<div style="-moz-box-shadow: 1px 1px 3px 2px #01070a; -webkit-box-shadow: 1px 1px 3px 2px #01070a; box-shadow: 1px 1px 3px 2px #01070a;">
Div content here</div>