HEX: #FA984E
RGB: (250,152,78)
#FA984E contains mainly red color. Web safe color of #FA984E is #FF9966 (or #F96).
#FA984E color RGB value is (250,152,78).
RGB: (250,152,78) (98%,60%,31%)
R 250 of 255 = 98%
G 152 of 255 = 60%
B 78 of 255 = 31%
R + G + B ~ 63%. #FA984E is quite light color.
R + G + B =
250 + 152 + 78 = 480 (100%)
R 250 of 480 ~ 52.08%
G 152 of 480 ~ 31.67%
B 78 of 480 ~ 16.25%
#FA984E color CMYK value is (0,39,69,2).
CMYK: (0,39,69,2) C0M39Y69K2 (0%,39%,69%,2%) (0.00/0.39/0.69/0.02)
FA | 98 | 4E | |
---|---|---|---|
RGB | 250 | 152 | 78 |
HSL | 26° | 94.51% | 64.31% |
HSB/HSV | 26° | 68.80% | 98.04% |
CMYK | 0.00% | 39.20% | 68.80% |
1.96% |
HEX | FA | 98 | 4E |
Decimal | 250 | 152 | 78 |
Binary | 11111010 | 10011000 | 1001110 |
Octal | 372 | 230 | 116 |
Examples of css and html codes for elements with #FA984E color. Also use rgb(250,152,78) instead hex code.
.myTextColor { color: #FA984E; }
<p style="color:#FA984E">This sample text font color is #FA984E.</p>
This text font color is #FA984E.
.myBgColor { background-color: #FA984E; }
<div style="background-color:#FA984E">Inner text</div>
This div background color is #FA984E.
.myBorderColor { border: 1px solid #FA984E; }
<div style="border:3px solid #FA984E">Div</div>
This div border color is #FA984E.
.myOpacity80 { color: #FA984E; opacity: 0.8; }
<p style="color:#FA984E;opacity:0.8;">80%</p>
Text with #FA984E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FA984E;}
<p style="text-shadow: 3px 3px 1px #FA984E">Text here.</p>
This text has shadow with #FA984E color.
.textShadow {text-shadow: 3px 3px 1px #FA984E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FA984E, 5px 5px 20px red">Text here.</p>
This text has shadow with #FA984E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FA984E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FA984E, Direction=45, Strength=4)">Text</p>
This text has shadow with #FA984E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FA984E; -webkit-box-shadow: 1px 1px 3px 2px #FA984E; box-shadow: 1px 1px 3px 2px #FA984E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FA984E; -webkit-box-shadow: 1px 1px 3px 2px #FA984E; box-shadow:1px 1px 3px 2px #FA984E;">
Div content here</div>
This text has color #FA984E on black background.
This text has color #FA984E on white background.
This text has black color on #FA984E background.
This text has white color on #FA984E background.