#F50064 color RGB value is (15, 80, 6).
#F50064 hex color red value is 15, green value is 80, and blue value is 6.
Cylindrical-coordinate representations (HSL) of color #F50064
hue: 112.7,
saturation: 0.86 and lightness: 0.17.
The process color (four-color CMYK) of #F50064 color hex is 0.00, 0.28, 0.40, 0.03. Web safe color of #F50064 is #ff9999. Color #F50064 contains mainly RED.
Color spaces of #F50064 | Value |
---|---|
RGB | 245, 0, 100 |
HSL | 0.93, 1, 0.48 |
HSV | 336°, 100°, 96° |
XYZ | 39.96, 20.34, 13.88 |
Base | Red | Green | Blue |
---|---|---|---|
Binary | 11110101 | 0 | 1100100 |
Octal | 365 | 0 | 144 |
Decimal | 245 | 0 | 100 |
Hex | F5 | 0 | 64 |
Shades of #F50064
Tints of #F50064
.mybgColor {background-color: #F50064;} .myforeColor {color: #F50064;} .myborderColor {border:3px solid #F50064;}
<p style="color:#F50064">Text here</p>
This sample text is styled with the font color #F50064. 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:#F50064">Div content here</div>
<div style="border:3px solid #F50064">Div here</div>
.textShadowRgb { text-shadow: 4px 4px 2px rgba(245, 0, 100, 0.8); } .textShadowHex { text-shadow: 4px 4px 2px #F50064; } .divShadow { -moz-box-shadow: 1px 1px 3px #F50064; -webkit-box-shadow: 1px 1px 3px #F50064; box-shadow: 1px 1px 3px #F50064; }
<p style="text-shadow: 4px 4px 2px rgba(245, 0, 100, 0.8);">Text here</p>
This text has a shadow with RGB values.
<p style="text-shadow: 4px 4px 2px #F50064;">Text here</p>
This text has a shadow with hexadecimal (hex) values.
<div style="-moz-box-shadow: 1px 1px 3px #F50064;
-webkit-box-shadow: 1px 1px 3px #F50064;
box-shadow: 1px 1px 3px #F50064;">Div content here</div>