HEX: #FA71A7
RGB: (250,113,167)
#FA71A7 contains mainly red color. Web safe color of #FA71A7 is #FF6699 (or #F69).
#FA71A7 color RGB value is (250,113,167).
RGB: (250,113,167) (98%,44%,65%)
R 250 of 255 = 98%
G 113 of 255 = 44%
B 167 of 255 = 65%
R + G + B ~ 69%. #FA71A7 is quite light color.
R + G + B =
250 + 113 + 167 = 530 (100%)
R 250 of 530 ~ 47.17%
G 113 of 530 ~ 21.32%
B 167 of 530 ~ 31.51%
#FA71A7 color CMYK value is (0,55,33,2).
CMYK: (0,55,33,2) C0M55Y33K2 (0%,55%,33%,2%) (0.00/0.55/0.33/0.02)
FA | 71 | A7 | |
---|---|---|---|
RGB | 250 | 113 | 167 |
HSL | 336° | 93.20% | 71.18% |
HSB/HSV | 336° | 54.80% | 98.04% |
CMYK | 0.00% | 54.80% | 33.20% |
1.96% |
HEX | FA | 71 | A7 |
Decimal | 250 | 113 | 167 |
Binary | 11111010 | 1110001 | 10100111 |
Octal | 372 | 161 | 247 |
Examples of css and html codes for elements with #FA71A7 color. Also use rgb(250,113,167) instead hex code.
.myTextColor { color: #FA71A7; }
<p style="color:#FA71A7">This sample text font color is #FA71A7.</p>
This text font color is #FA71A7.
.myBgColor { background-color: #FA71A7; }
<div style="background-color:#FA71A7">Inner text</div>
This div background color is #FA71A7.
.myBorderColor { border: 1px solid #FA71A7; }
<div style="border:3px solid #FA71A7">Div</div>
This div border color is #FA71A7.
.myOpacity80 { color: #FA71A7; opacity: 0.8; }
<p style="color:#FA71A7;opacity:0.8;">80%</p>
Text with #FA71A7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FA71A7;}
<p style="text-shadow: 3px 3px 1px #FA71A7">Text here.</p>
This text has shadow with #FA71A7 color.
.textShadow {text-shadow: 3px 3px 1px #FA71A7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FA71A7, 5px 5px 20px red">Text here.</p>
This text has shadow with #FA71A7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FA71A7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FA71A7, Direction=45, Strength=4)">Text</p>
This text has shadow with #FA71A7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FA71A7; -webkit-box-shadow: 1px 1px 3px 2px #FA71A7; box-shadow: 1px 1px 3px 2px #FA71A7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FA71A7; -webkit-box-shadow: 1px 1px 3px 2px #FA71A7; box-shadow:1px 1px 3px 2px #FA71A7;">
Div content here</div>
This text has color #FA71A7 on black background.
This text has color #FA71A7 on white background.
This text has black color on #FA71A7 background.
This text has white color on #FA71A7 background.