color details

Color Details
#F50064 Color Hex

#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
Color spaces of #F50064Value
RGB245, 0, 100
HSL0.93, 1, 0.48
HSV336°, 100°, 96°
XYZ39.96, 20.34, 13.88
Base Numbers
Base Red Green Blue
Binary 11110101 0 1100100
Octal 365 0 144
Decimal 245 0 100
Hex F5 0 64

RGB Percentages for Color #F50064

71.01%
28.99%

CMYK Percentages of the Color #F50064

100%
59.18%
3.92%
CSS Codes for Color #F50064
.mybgColor {background-color: #F50064;}
.myforeColor {color: #F50064;}
.myborderColor {border:3px solid #F50064;}
Text Font Color #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,

Background Color #F50064

<div style="background-color:#F50064">Div content here</div>

The background color of this div is #F50064
Border Color #F50064

<div style="border:3px solid #F50064">Div here</div>

The border color of this div is #F50064
Css3 Examples
            .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;            }
            
Text Shadow Using RGB Values

<p style="text-shadow: 4px 4px 2px rgba(245, 0, 100, 0.8);">Text here</p>

This text has a shadow with RGB values.

Text Shadow Using Hex Values

<p style="text-shadow: 4px 4px 2px #F50064;">Text here</p>

This text has a shadow with hexadecimal (hex) values.

Shadow Div Box

<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>

This div box has a shadow with a specified color. #F50064
Scroll to Top