HEX: #FAA400
RGB: (250,164,0)
#FAA400 contains mainly red color. Web safe color of #FAA400 is #FF9900 (or #F90).
#FAA400 color RGB value is (250,164,0).
RGB: (250,164,0) (98%,64%,0%)
R 250 of 255 = 98%
G 164 of 255 = 64%
B 0 of 255 = 0%
R + G + B ~ 54%. #FAA400 is middle color (not dark and not light).
R + G + B =
250 + 164 + 0 = 414 (100%)
R 250 of 414 ~ 60.39%
G 164 of 414 ~ 39.61%
B 0 of 414 ~ 0%
#FAA400 color CMYK value is (0,34,100,2).
CMYK: (0,34,100,2) C0M34Y100K2 (0%,34%,100%,2%) (0.00/0.34/1.00/0.02)
FA | A4 | 00 | |
---|---|---|---|
RGB | 250 | 164 | 0 |
HSL | 39° | 100.00% | 49.02% |
HSB/HSV | 39° | 100.00% | 98.04% |
CMYK | 0.00% | 34.40% | 100.00% |
1.96% |
HEX | FA | A4 | 00 |
Decimal | 250 | 164 | 0 |
Binary | 11111010 | 10100100 | 0 |
Octal | 372 | 244 | 0 |
Examples of css and html codes for elements with #FAA400 color. Also use rgb(250,164,0) instead hex code.
.myTextColor { color: #FAA400; }
<p style="color:#FAA400">This sample text font color is #FAA400.</p>
This text font color is #FAA400.
.myBgColor { background-color: #FAA400; }
<div style="background-color:#FAA400">Inner text</div>
This div background color is #FAA400.
.myBorderColor { border: 1px solid #FAA400; }
<div style="border:3px solid #FAA400">Div</div>
This div border color is #FAA400.
.myOpacity80 { color: #FAA400; opacity: 0.8; }
<p style="color:#FAA400;opacity:0.8;">80%</p>
Text with #FAA400 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAA400;}
<p style="text-shadow: 3px 3px 1px #FAA400">Text here.</p>
This text has shadow with #FAA400 color.
.textShadow {text-shadow: 3px 3px 1px #FAA400, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAA400, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAA400 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAA400, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAA400, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAA400 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAA400; -webkit-box-shadow: 1px 1px 3px 2px #FAA400; box-shadow: 1px 1px 3px 2px #FAA400; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAA400; -webkit-box-shadow: 1px 1px 3px 2px #FAA400; box-shadow:1px 1px 3px 2px #FAA400;">
Div content here</div>
This text has color #FAA400 on black background.
This text has color #FAA400 on white background.
This text has black color on #FAA400 background.
This text has white color on #FAA400 background.