#D500FF color RGB value is (13, 80, 15).
#D500FF hex color red value is 13, green value is 80, and blue value is 15.
Cylindrical-coordinate representations (HSL) of color #D500FF
hue: 121.79,
saturation: 0.72 and lightness: 0.18.
The process color (four-color CMYK) of #D500FF color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #D500FF is #ff9999. Color #D500FF contains mainly RED.
Color spaces of #D500FF | Value |
---|---|
RGB | 213, 0, 255 |
HSL | 0.81, 1, 0.5 |
HSV | 290°, 100°, 100° |
XYZ | 45.49, 21.37, 96.32 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11010101 | 0 | 11111111 |
Octal | 325 | 0 | 377 |
Decimal | 213 | 0 | 255 |
Hex | D5 | 0 | FF |
Shades of #D500FF
Tints of #D500FF
.mybgColor {background-color: #D500FF;} .myforeColor {color: #D500FF;} .myborderColor {border:3px solid #D500FF;}
<p style="color:#D500FF">Text here</p>
This sample text is styled with the font color #D500FF. It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here,
<div style="background-color:#D500FF">Div content here</div>
<div style="border:3px solid #D500FF">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(213, 0, 255, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #D500FF; } .divShadow { -moz-box-shadow: 1px 1px 3px #D500FF; -webkit-box-shadow: 1px 1px 3px #D500FF; box-shadow: 1px 1px 3px #D500FF; }
<p style="text-shadow: 4px 4px 2px rgba(213, 0, 255, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #D500FF;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #D500FF;
-webkit-box-shadow: 1px 1px 3px #D500FF;
box-shadow: 1px 1px 3px #D500FF;">Div content here</div>