HEX: #F76C8A
RGB: (247,108,138)
#F76C8A contains mainly red color. Web safe color of #F76C8A is #FF6699 (or #F69).
#F76C8A color RGB value is (247,108,138).
RGB: (247,108,138) (97%,42%,54%)
R 247 of 255 = 97%
G 108 of 255 = 42%
B 138 of 255 = 54%
R + G + B ~ 64%. #F76C8A is quite light color.
R + G + B =
247 + 108 + 138 = 493 (100%)
R 247 of 493 ~ 50.1%
G 108 of 493 ~ 21.91%
B 138 of 493 ~ 27.99%
#F76C8A color CMYK value is (0,56,44,3).
CMYK: (0,56,44,3) C0M56Y44K3 (0%,56%,44%,3%) (0.00/0.56/0.44/0.03)
F7 | 6C | 8A | |
---|---|---|---|
RGB | 247 | 108 | 138 |
HSL | 347° | 89.68% | 69.61% |
HSB/HSV | 347° | 56.28% | 96.86% |
CMYK | 0.00% | 56.28% | 44.13% |
3.14% |
HEX | F7 | 6C | 8A |
Decimal | 247 | 108 | 138 |
Binary | 11110111 | 1101100 | 10001010 |
Octal | 367 | 154 | 212 |
Examples of css and html codes for elements with #F76C8A color. Also use rgb(247,108,138) instead hex code.
.myTextColor { color: #F76C8A; }
<p style="color:#F76C8A">This sample text font color is #F76C8A.</p>
This text font color is #F76C8A.
.myBgColor { background-color: #F76C8A; }
<div style="background-color:#F76C8A">Inner text</div>
This div background color is #F76C8A.
.myBorderColor { border: 1px solid #F76C8A; }
<div style="border:3px solid #F76C8A">Div</div>
This div border color is #F76C8A.
.myOpacity80 { color: #F76C8A; opacity: 0.8; }
<p style="color:#F76C8A;opacity:0.8;">80%</p>
Text with #F76C8A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F76C8A;}
<p style="text-shadow: 3px 3px 1px #F76C8A">Text here.</p>
This text has shadow with #F76C8A color.
.textShadow {text-shadow: 3px 3px 1px #F76C8A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F76C8A, 5px 5px 20px red">Text here.</p>
This text has shadow with #F76C8A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F76C8A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F76C8A, Direction=45, Strength=4)">Text</p>
This text has shadow with #F76C8A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F76C8A; -webkit-box-shadow: 1px 1px 3px 2px #F76C8A; box-shadow: 1px 1px 3px 2px #F76C8A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F76C8A; -webkit-box-shadow: 1px 1px 3px 2px #F76C8A; box-shadow:1px 1px 3px 2px #F76C8A;">
Div content here</div>
This text has color #F76C8A on black background.
This text has color #F76C8A on white background.
This text has black color on #F76C8A background.
This text has white color on #F76C8A background.