HEX: #F77994
RGB: (247,121,148)
#F77994 contains mainly red color. Web safe color of #F77994 is #FF6699 (or #F69).
#F77994 color RGB value is (247,121,148).
RGB: (247,121,148) (97%,47%,58%)
R 247 of 255 = 97%
G 121 of 255 = 47%
B 148 of 255 = 58%
R + G + B ~ 67%. #F77994 is quite light color.
R + G + B =
247 + 121 + 148 = 516 (100%)
R 247 of 516 ~ 47.87%
G 121 of 516 ~ 23.45%
B 148 of 516 ~ 28.68%
#F77994 color CMYK value is (0,51,40,3).
CMYK: (0,51,40,3) C0M51Y40K3 (0%,51%,40%,3%) (0.00/0.51/0.40/0.03)
F7 | 79 | 94 | |
---|---|---|---|
RGB | 247 | 121 | 148 |
HSL | 347° | 88.73% | 72.16% |
HSB/HSV | 347° | 51.01% | 96.86% |
CMYK | 0.00% | 51.01% | 40.08% |
3.14% |
HEX | F7 | 79 | 94 |
Decimal | 247 | 121 | 148 |
Binary | 11110111 | 1111001 | 10010100 |
Octal | 367 | 171 | 224 |
Examples of css and html codes for elements with #F77994 color. Also use rgb(247,121,148) instead hex code.
.myTextColor { color: #F77994; }
<p style="color:#F77994">This sample text font color is #F77994.</p>
This text font color is #F77994.
.myBgColor { background-color: #F77994; }
<div style="background-color:#F77994">Inner text</div>
This div background color is #F77994.
.myBorderColor { border: 1px solid #F77994; }
<div style="border:3px solid #F77994">Div</div>
This div border color is #F77994.
.myOpacity80 { color: #F77994; opacity: 0.8; }
<p style="color:#F77994;opacity:0.8;">80%</p>
Text with #F77994 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F77994;}
<p style="text-shadow: 3px 3px 1px #F77994">Text here.</p>
This text has shadow with #F77994 color.
.textShadow {text-shadow: 3px 3px 1px #F77994, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F77994, 5px 5px 20px red">Text here.</p>
This text has shadow with #F77994 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F77994, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F77994, Direction=45, Strength=4)">Text</p>
This text has shadow with #F77994 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F77994; -webkit-box-shadow: 1px 1px 3px 2px #F77994; box-shadow: 1px 1px 3px 2px #F77994; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F77994; -webkit-box-shadow: 1px 1px 3px 2px #F77994; box-shadow:1px 1px 3px 2px #F77994;">
Div content here</div>
This text has color #F77994 on black background.
This text has color #F77994 on white background.
This text has black color on #F77994 background.
This text has white color on #F77994 background.