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