HEX: #F975AA
RGB: (249,117,170)
#F975AA contains mainly red color. Web safe color of #F975AA is #FF6699 (or #F69).
#F975AA color RGB value is (249,117,170).
RGB: (249,117,170) (98%,46%,67%)
R 249 of 255 = 98%
G 117 of 255 = 46%
B 170 of 255 = 67%
R + G + B ~ 70%. #F975AA is quite light color.
R + G + B =
249 + 117 + 170 = 536 (100%)
R 249 of 536 ~ 46.46%
G 117 of 536 ~ 21.83%
B 170 of 536 ~ 31.72%
#F975AA color CMYK value is (0,53,32,2).
CMYK: (0,53,32,2) C0M53Y32K2 (0%,53%,32%,2%) (0.00/0.53/0.32/0.02)
F9 | 75 | AA | |
---|---|---|---|
RGB | 249 | 117 | 170 |
HSL | 336° | 91.67% | 71.76% |
HSB/HSV | 336° | 53.01% | 97.65% |
CMYK | 0.00% | 53.01% | 31.73% |
2.35% |
HEX | F9 | 75 | AA |
Decimal | 249 | 117 | 170 |
Binary | 11111001 | 1110101 | 10101010 |
Octal | 371 | 165 | 252 |
Examples of css and html codes for elements with #F975AA color. Also use rgb(249,117,170) instead hex code.
.myTextColor { color: #F975AA; }
<p style="color:#F975AA">This sample text font color is #F975AA.</p>
This text font color is #F975AA.
.myBgColor { background-color: #F975AA; }
<div style="background-color:#F975AA">Inner text</div>
This div background color is #F975AA.
.myBorderColor { border: 1px solid #F975AA; }
<div style="border:3px solid #F975AA">Div</div>
This div border color is #F975AA.
.myOpacity80 { color: #F975AA; opacity: 0.8; }
<p style="color:#F975AA;opacity:0.8;">80%</p>
Text with #F975AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F975AA;}
<p style="text-shadow: 3px 3px 1px #F975AA">Text here.</p>
This text has shadow with #F975AA color.
.textShadow {text-shadow: 3px 3px 1px #F975AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F975AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F975AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F975AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F975AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F975AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F975AA; -webkit-box-shadow: 1px 1px 3px 2px #F975AA; box-shadow: 1px 1px 3px 2px #F975AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F975AA; -webkit-box-shadow: 1px 1px 3px 2px #F975AA; box-shadow:1px 1px 3px 2px #F975AA;">
Div content here</div>
This text has color #F975AA on black background.
This text has color #F975AA on white background.
This text has black color on #F975AA background.
This text has white color on #F975AA background.