HEX: #FA8072
RGB: (250,128,114)
Color name is Salmon. #FA8072 contains mainly red color. Web safe color of #FA8072 is #FF6666 (or #F66).
#FA8072 color RGB value is (250,128,114).
RGB: (250,128,114) (98%,50%,45%)
R 250 of 255 = 98%
G 128 of 255 = 50%
B 114 of 255 = 45%
R + G + B ~ 64%. #FA8072 is quite light color.
R + G + B =
250 + 128 + 114 = 492 (100%)
R 250 of 492 ~ 50.81%
G 128 of 492 ~ 26.02%
B 114 of 492 ~ 23.17%
#FA8072 color CMYK value is (0,49,54,2).
CMYK: (0,49,54,2) C0M49Y54K2 (0%,49%,54%,2%) (0.00/0.49/0.54/0.02)
FA | 80 | 72 | |
---|---|---|---|
RGB | 250 | 128 | 114 |
HSL | 6° | 93.15% | 71.37% |
HSB/HSV | 6° | 54.40% | 98.04% |
CMYK | 0.00% | 48.80% | 54.40% |
1.96% |
HEX | FA | 80 | 72 |
Decimal | 250 | 128 | 114 |
Binary | 11111010 | 10000000 | 1110010 |
Octal | 372 | 200 | 162 |
Examples of css and html codes for elements with #FA8072 color. Also use rgb(250,128,114) instead hex code.
.myTextColor { color: #FA8072; }
<p style="color:#FA8072">This sample text font color is #FA8072.</p>
This text font color is #FA8072.
.myBgColor { background-color: #FA8072; }
<div style="background-color:#FA8072">Inner text</div>
This div background color is #FA8072.
.myBorderColor { border: 1px solid #FA8072; }
<div style="border:3px solid #FA8072">Div</div>
This div border color is #FA8072.
.myOpacity80 { color: #FA8072; opacity: 0.8; }
<p style="color:#FA8072;opacity:0.8;">80%</p>
Text with #FA8072 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FA8072;}
<p style="text-shadow: 3px 3px 1px #FA8072">Text here.</p>
This text has shadow with #FA8072 color.
.textShadow {text-shadow: 3px 3px 1px #FA8072, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FA8072, 5px 5px 20px red">Text here.</p>
This text has shadow with #FA8072 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FA8072, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FA8072, Direction=45, Strength=4)">Text</p>
This text has shadow with #FA8072 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FA8072; -webkit-box-shadow: 1px 1px 3px 2px #FA8072; box-shadow: 1px 1px 3px 2px #FA8072; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FA8072; -webkit-box-shadow: 1px 1px 3px 2px #FA8072; box-shadow:1px 1px 3px 2px #FA8072;">
Div content here</div>
This text has color #FA8072 on black background.
This text has color #FA8072 on white background.
This text has black color on #FA8072 background.
This text has white color on #FA8072 background.