HEX: #F079DF
RGB: (240,121,223)
#F079DF contains mainly red and blue colors. Web safe color of #F079DF is #FF66CC (or #F6C).
#F079DF color RGB value is (240,121,223).
RGB: (240,121,223) (94%,47%,87%)
R 240 of 255 = 94%
G 121 of 255 = 47%
B 223 of 255 = 87%
R + G + B ~ 76%. #F079DF is quite light color.
R + G + B =
240 + 121 + 223 = 584 (100%)
R 240 of 584 ~ 41.1%
G 121 of 584 ~ 20.72%
B 223 of 584 ~ 38.18%
#F079DF color CMYK value is (0,50,7,6).
CMYK: (0,50,7,6) C0M50Y7K6 (0%,50%,7%,6%) (0.00/0.50/0.07/0.06)
F0 | 79 | DF | |
---|---|---|---|
RGB | 240 | 121 | 223 |
HSL | 309° | 79.87% | 70.78% |
HSB/HSV | 309° | 49.58% | 94.12% |
CMYK | 0.00% | 49.58% | 7.08% |
5.88% |
HEX | F0 | 79 | DF |
Decimal | 240 | 121 | 223 |
Binary | 11110000 | 1111001 | 11011111 |
Octal | 360 | 171 | 337 |
Examples of css and html codes for elements with #F079DF color. Also use rgb(240,121,223) instead hex code.
.myTextColor { color: #F079DF; }
<p style="color:#F079DF">This sample text font color is #F079DF.</p>
This text font color is #F079DF.
.myBgColor { background-color: #F079DF; }
<div style="background-color:#F079DF">Inner text</div>
This div background color is #F079DF.
.myBorderColor { border: 1px solid #F079DF; }
<div style="border:3px solid #F079DF">Div</div>
This div border color is #F079DF.
.myOpacity80 { color: #F079DF; opacity: 0.8; }
<p style="color:#F079DF;opacity:0.8;">80%</p>
Text with #F079DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F079DF;}
<p style="text-shadow: 3px 3px 1px #F079DF">Text here.</p>
This text has shadow with #F079DF color.
.textShadow {text-shadow: 3px 3px 1px #F079DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F079DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #F079DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F079DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F079DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #F079DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F079DF; -webkit-box-shadow: 1px 1px 3px 2px #F079DF; box-shadow: 1px 1px 3px 2px #F079DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F079DF; -webkit-box-shadow: 1px 1px 3px 2px #F079DF; box-shadow:1px 1px 3px 2px #F079DF;">
Div content here</div>
This text has color #F079DF on black background.
This text has color #F079DF on white background.
This text has black color on #F079DF background.
This text has white color on #F079DF background.