#0048cd hex color information.
RGB value of #0048cd is (0,72,205)
Change page background color to #0048cd
| Reset
| RGB | 0 | 72 | 205 |
|---|---|---|---|
| HSL | 0.61 | 1.00 | 0.40 |
| HSV | 219° | 100° | 80° |
| CMYK | 1.00 | 0.65 | 0.00 0.20 |
| XYZ | 13.3368 | 9.0425 | 58.8001 |
| Yxy | 9.0425 | 0.1643 | 0.1114 |
| Hunter Lab | 30.0707 | 26.5434 | -94.8857 |
| CIE-Lab | 36.0660 | 35.3987 | -73.0991 |
#0048cd hex color red value is 0, green value is 72 and the blue value of its RGB is 72. Cylindrical-coordinate representations (also known as HSL) of color #0048cd hue: 0.61 , saturation: 1.00 and the lightness value of 0048cd is 0.40.
The process color (four color CMYK) of #0048cd hex color is 1.00, 0.65, 0.00, 0.20. Web safe color of #0048cd is #0033cc
Color #0048cd contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 00000000 | 01001000 | 11001101 |
| Octal | 0 | 110 | 315 |
| Decimal | 0 | 72 | 205 |
| Hexadecimal | 0 | 48 | CD |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#0048cd; }
.myforecolor {color:#0048cd; }
.mybordercolor {border:3px solid #0048cd; }
This sample text font color is #0048cd
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:#0048cd">Text here</p>
This div background color is #0048cd
<div style="background-color:#0048cd">
Div content here</div>
This div border color is #0048cd
<div style="border:3px solid #0048cd">
Div here</div>
| #0048cd | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(0,72,205, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #0048cd;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #0048cd;
-webkit-box-shadow: 1px 1px 3px 2px #0048cd;
box-shadow: 1px 1px 3px 2px #0048cd;
}
<p style="text-shadow: 4px 4px 2px rgba(0,72,205, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #0048cd">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #0048cd
<div style="-moz-box-shadow: 1px 1px 3px 2px #0048cd; -webkit-box-shadow: 1px 1px 3px 2px #0048cd; box-shadow: 1px 1px 3px 2px #0048cd;">
Div content here</div>