HEX: #FA8E61
RGB: (250,142,97)
#FA8E61 contains mainly red color. Web safe color of #FA8E61 is #FF9966 (or #F96).
#FA8E61 color RGB value is (250,142,97).
RGB: (250,142,97) (98%,56%,38%)
R 250 of 255 = 98%
G 142 of 255 = 56%
B 97 of 255 = 38%
R + G + B ~ 64%. #FA8E61 is quite light color.
R + G + B =
250 + 142 + 97 = 489 (100%)
R 250 of 489 ~ 51.12%
G 142 of 489 ~ 29.04%
B 97 of 489 ~ 19.84%
#FA8E61 color CMYK value is (0,43,61,2).
CMYK: (0,43,61,2) C0M43Y61K2 (0%,43%,61%,2%) (0.00/0.43/0.61/0.02)
FA | 8E | 61 | |
---|---|---|---|
RGB | 250 | 142 | 97 |
HSL | 18° | 93.87% | 68.04% |
HSB/HSV | 18° | 61.20% | 98.04% |
CMYK | 0.00% | 43.20% | 61.20% |
1.96% |
HEX | FA | 8E | 61 |
Decimal | 250 | 142 | 97 |
Binary | 11111010 | 10001110 | 1100001 |
Octal | 372 | 216 | 141 |
Examples of css and html codes for elements with #FA8E61 color. Also use rgb(250,142,97) instead hex code.
.myTextColor { color: #FA8E61; }
<p style="color:#FA8E61">This sample text font color is #FA8E61.</p>
This text font color is #FA8E61.
.myBgColor { background-color: #FA8E61; }
<div style="background-color:#FA8E61">Inner text</div>
This div background color is #FA8E61.
.myBorderColor { border: 1px solid #FA8E61; }
<div style="border:3px solid #FA8E61">Div</div>
This div border color is #FA8E61.
.myOpacity80 { color: #FA8E61; opacity: 0.8; }
<p style="color:#FA8E61;opacity:0.8;">80%</p>
Text with #FA8E61 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FA8E61;}
<p style="text-shadow: 3px 3px 1px #FA8E61">Text here.</p>
This text has shadow with #FA8E61 color.
.textShadow {text-shadow: 3px 3px 1px #FA8E61, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FA8E61, 5px 5px 20px red">Text here.</p>
This text has shadow with #FA8E61 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FA8E61, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FA8E61, Direction=45, Strength=4)">Text</p>
This text has shadow with #FA8E61 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FA8E61; -webkit-box-shadow: 1px 1px 3px 2px #FA8E61; box-shadow: 1px 1px 3px 2px #FA8E61; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FA8E61; -webkit-box-shadow: 1px 1px 3px 2px #FA8E61; box-shadow:1px 1px 3px 2px #FA8E61;">
Div content here</div>
This text has color #FA8E61 on black background.
This text has color #FA8E61 on white background.
This text has black color on #FA8E61 background.
This text has white color on #FA8E61 background.