#4500ff hex color information.
RGB value of #4500ff is (69,0,255)
Change page background color to #4500ff
| Reset
| RGB | 69 | 0 | 255 |
|---|---|---|---|
| HSL | 0.71 | 1.00 | 0.50 |
| HSV | 256° | 100° | 100° |
| CMYK | 0.73 | 1.00 | 0.00 0.00 |
| XYZ | 20.5042 | 8.4852 | 95.1649 |
| Yxy | 8.4852 | 0.1652 | 0.0683 |
| Hunter Lab | 29.1294 | 74.6700 | -173.3084 |
| CIE-Lab | 34.9736 | 80.1597 | -103.3355 |
#4500ff hex color red value is 69, green value is 0 and the blue value of its RGB is 0. Cylindrical-coordinate representations (also known as HSL) of color #4500ff hue: 0.71 , saturation: 1.00 and the lightness value of 4500ff is 0.50.
The process color (four color CMYK) of #4500ff hex color is 0.73, 1.00, 0.00, 0.00. Web safe color of #4500ff is #3300ff
Color #4500ff contains mostly BLUE color.
| Base | Red | Green | Blue |
|---|---|---|---|
| Binary | 01000101 | 00000000 | 11111111 |
| Octal | 105 | 0 | 377 |
| Decimal | 69 | 0 | 255 |
| Hexadecimal | 45 | 0 | FF |
Lorem ipsum dolor sit amet.
Lorem ipsum dolor sit amet.
.mybgcolor {background-color:#4500ff; }
.myforecolor {color:#4500ff; }
.mybordercolor {border:3px solid #4500ff; }
This sample text font color is #4500ff
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:#4500ff">Text here</p>
This div background color is #4500ff
<div style="background-color:#4500ff">
Div content here</div>
This div border color is #4500ff
<div style="border:3px solid #4500ff">
Div here</div>
| #4500ff | border color |
.textShadowRgb {
text-shadow: 4px 4px 2px rgba(69,0,255, 0.8);
}
.textShadowHex {
text-shadow: 4px 4px 2px #4500ff;
}
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #4500ff;
-webkit-box-shadow: 1px 1px 3px 2px #4500ff;
box-shadow: 1px 1px 3px 2px #4500ff;
}
<p style="text-shadow: 4px 4px 2px rgba(69,0,255, 0.8);">Text here</p>
This text has shadow with rgb values.
<p style="text-shadow: 4px 4px 2px #4500ff">Text here</p>
This text has shadow with hex values.
This div box has shadow with color #4500ff
<div style="-moz-box-shadow: 1px 1px 3px 2px #4500ff; -webkit-box-shadow: 1px 1px 3px 2px #4500ff; box-shadow: 1px 1px 3px 2px #4500ff;">
Div content here</div>