#020d12 hex color information.
RGB value of #020d12 is (2,13,18)
Change page background color to #020d12
| Reset
| RGB | 2 | 13 | 18 |
|---|---|---|---|
| HSL | 0.55 | 0.80 | 0.04 |
| HSV | 199° | 89° | 7° |
| CMYK | 0.89 | 0.28 | 0.00 0.93 |
| XYZ | 0.2781 | 0.3444 | 0.6241 |
| Yxy | 0.3444 | 0.2231 | 0.2763 |
| Hunter Lab | 5.8686 | -1.8112 | -2.1973 |
| CIE-Lab | 3.1109 | -2.0171 | -3.5631 |
#020d12 hex color red value is 2, green value is 13 and the blue value of its RGB is 13. Cylindrical-coordinate representations (also known as HSL) of color #020d12 hue: 0.55 , saturation: 0.80 and the lightness value of 020d12 is 0.04.
The process color (four color CMYK) of #020d12 hex color is 0.89, 0.28, 0.00, 0.93. Web safe color of #020d12 is #000000
Color #020d12 contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00000010 | 00001101 | 00010010 |
| Octal | 2 | 15 | 22 |
| Decimal | 2 | 13 | 18 |
| Hexadecimal | 2 | D | 12 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#020d12; }
.myforecolor {color:#020d12; }
.mybordercolor {border:3px solid #020d12; }
This sample text font color is #020d12
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:#020d12">Text here</p>
This div background color is #020d12
<div style="background-color:#020d12">
Div content here</div>
This div border color is #020d12
<div style="border:3px solid #020d12">
Div here</div>
| #020d12 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(2,13,18, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #020d12;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #020d12;
-webkit-box-shadow: 1px 1px 3px 2px #020d12;
box-shadow: 1px 1px 3px 2px #020d12;
}
<p style="text-shadow: 4px 4px 2px rgba(2,13,18, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #020d12">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #020d12
<div style="-moz-box-shadow: 1px 1px 3px 2px #020d12; -webkit-box-shadow: 1px 1px 3px 2px #020d12; box-shadow: 1px 1px 3px 2px #020d12;">
Div content here</div>