#d00e03 hex color information.
RGB value of #d00e03 is (208,14,3)
Change page background color to #d00e03
| Reset
| RGB | 208 | 14 | 3 |
|---|---|---|---|
| HSL | 0.01 | 0.97 | 0.41 |
| HSV | 3° | 99° | 82° |
| CMYK | 0.00 | 0.93 | 0.99 0.18 |
| XYZ | 26.1859 | 13.7305 | 1.3563 |
| Yxy | 13.7305 | 0.6345 | 0.3327 |
| Hunter Lab | 37.0547 | 61.2971 | 23.7681 |
| CIE-Lab | 43.8439 | 67.3987 | 56.8172 |
#d00e03 hex color red value is 208, green value is 14 and the blue value of its RGB is 14. Cylindrical-coordinate representations (also known as HSL) of color #d00e03 hue: 0.01 , saturation: 0.97 and the lightness value of d00e03 is 0.41.
The process color (four color CMYK) of #d00e03 hex color is 0.00, 0.93, 0.99, 0.18. Web safe color of #d00e03 is #cc0000
Color #d00e03 contains mostly RED color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 11010000 | 00001110 | 00000011 |
| Octal | 320 | 16 | 3 |
| Decimal | 208 | 14 | 3 |
| Hexadecimal | D0 | E | 3 |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#d00e03; }
.myforecolor {color:#d00e03; }
.mybordercolor {border:3px solid #d00e03; }
This sample text font color is #d00e03
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:#d00e03">Text here</p>
This div background color is #d00e03
<div style="background-color:#d00e03">
Div content here</div>
This div border color is #d00e03
<div style="border:3px solid #d00e03">
Div here</div>
| #d00e03 | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(208,14,3, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #d00e03;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #d00e03;
-webkit-box-shadow: 1px 1px 3px 2px #d00e03;
box-shadow: 1px 1px 3px 2px #d00e03;
}
<p style="text-shadow: 4px 4px 2px rgba(208,14,3, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #d00e03">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #d00e03
<div style="-moz-box-shadow: 1px 1px 3px 2px #d00e03; -webkit-box-shadow: 1px 1px 3px 2px #d00e03; box-shadow: 1px 1px 3px 2px #d00e03;">
Div content here</div>