#020a0d hex color information.
RGB value of #020a0d is (2,10,13)
Change page background color to #020a0d
| Reset
| RGB | 2 | 10 | 13 |
|---|---|---|---|
| HSL | 0.55 | 0.73 | 0.03 |
| HSV | 196° | 85° | 5° |
| CMYK | 0.85 | 0.23 | 0.00 0.95 |
| XYZ | 0.2062 | 0.2590 | 0.4199 |
| Yxy | 0.2590 | 0.2330 | 0.2926 |
| Hunter Lab | 5.0892 | -1.6738 | -1.3295 |
| CIE-Lab | 2.3395 | -1.6374 | -1.9723 |
#020a0d hex color red value is 2, green value is 10 and the blue value of its RGB is 10. Cylindrical-coordinate representations (also known as HSL) of color #020a0d hue: 0.55 , saturation: 0.73 and the lightness value of 020a0d is 0.03.
The process color (four color CMYK) of #020a0d hex color is 0.85, 0.23, 0.00, 0.95. Web safe color of #020a0d is #000000
Color #020a0d contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00000010 | 00001010 | 00001101 |
| Octal | 2 | 12 | 15 |
| Decimal | 2 | 10 | 13 |
| Hexadecimal | 2 | A | D |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#020a0d; }
.myforecolor {color:#020a0d; }
.mybordercolor {border:3px solid #020a0d; }
This sample text font color is #020a0d
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:#020a0d">Text here</p>
This div background color is #020a0d
<div style="background-color:#020a0d">
Div content here</div>
This div border color is #020a0d
<div style="border:3px solid #020a0d">
Div here</div>
| #020a0d | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(2,10,13, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #020a0d;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #020a0d;
-webkit-box-shadow: 1px 1px 3px 2px #020a0d;
box-shadow: 1px 1px 3px 2px #020a0d;
}
<p style="text-shadow: 4px 4px 2px rgba(2,10,13, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #020a0d">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #020a0d
<div style="-moz-box-shadow: 1px 1px 3px 2px #020a0d; -webkit-box-shadow: 1px 1px 3px 2px #020a0d; box-shadow: 1px 1px 3px 2px #020a0d;">
Div content here</div>