#0d0e0e hex color information.
RGB value of #0d0e0e is (13,14,14)
Change page background color to #0d0e0e
| Reset
| RGB | 13 | 14 | 14 |
|---|---|---|---|
| HSL | 0.50 | 0.04 | 0.05 |
| HSV | 180° | 7° | 5° |
| CMYK | 0.07 | 0.00 | 0.00 0.95 |
| XYZ | 0.4023 | 0.4313 | 0.4775 |
| Yxy | 0.4313 | 0.3068 | 0.3290 |
| Hunter Lab | 6.5673 | -0.5584 | 0.2863 |
| CIE-Lab | 3.8959 | -0.3129 | -0.1128 |
#0d0e0e hex color red value is 13, green value is 14 and the blue value of its RGB is 14. Cylindrical-coordinate representations (also known as HSL) of color #0d0e0e hue: 0.50 , saturation: 0.04 and the lightness value of 0d0e0e is 0.05.
The process color (four color CMYK) of #0d0e0e hex color is 0.07, 0.00, 0.00, 0.95. Web safe color of #0d0e0e is #000000
Color #0d0e0e contains mostly GREEN color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00001101 | 00001110 | 00001110 |
| Octal | 15 | 16 | 16 |
| Decimal | 13 | 14 | 14 |
| Hexadecimal | D | E | E |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#0d0e0e; }
.myforecolor {color:#0d0e0e; }
.mybordercolor {border:3px solid #0d0e0e; }
This sample text font color is #0d0e0e
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:#0d0e0e">Text here</p>
This div background color is #0d0e0e
<div style="background-color:#0d0e0e">
Div content here</div>
This div border color is #0d0e0e
<div style="border:3px solid #0d0e0e">
Div here</div>
| #0d0e0e | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(13,14,14, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #0d0e0e;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #0d0e0e;
-webkit-box-shadow: 1px 1px 3px 2px #0d0e0e;
box-shadow: 1px 1px 3px 2px #0d0e0e;
}
<p style="text-shadow: 4px 4px 2px rgba(13,14,14, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #0d0e0e">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #0d0e0e
<div style="-moz-box-shadow: 1px 1px 3px 2px #0d0e0e; -webkit-box-shadow: 1px 1px 3px 2px #0d0e0e; box-shadow: 1px 1px 3px 2px #0d0e0e;">
Div content here</div>