HEX: #FAAE18
RGB: (250,174,24)
#FAAE18 contains mainly red color. Web safe color of #FAAE18 is #FF9900 (or #F90).
#FAAE18 color RGB value is (250,174,24).
RGB: (250,174,24) (98%,68%,9%)
R 250 of 255 = 98%
G 174 of 255 = 68%
B 24 of 255 = 9%
R + G + B ~ 58%. #FAAE18 is middle color (not dark and not light).
R + G + B =
250 + 174 + 24 = 448 (100%)
R 250 of 448 ~ 55.8%
G 174 of 448 ~ 38.84%
B 24 of 448 ~ 5.36%
#FAAE18 color CMYK value is (0,30,90,2).
CMYK: (0,30,90,2) C0M30Y90K2 (0%,30%,90%,2%) (0.00/0.30/0.90/0.02)
FA | AE | 18 | |
---|---|---|---|
RGB | 250 | 174 | 24 |
HSL | 40° | 95.76% | 53.73% |
HSB/HSV | 40° | 90.40% | 98.04% |
CMYK | 0.00% | 30.40% | 90.40% |
1.96% |
HEX | FA | AE | 18 |
Decimal | 250 | 174 | 24 |
Binary | 11111010 | 10101110 | 11000 |
Octal | 372 | 256 | 30 |
Examples of css and html codes for elements with #FAAE18 color. Also use rgb(250,174,24) instead hex code.
.myTextColor { color: #FAAE18; }
<p style="color:#FAAE18">This sample text font color is #FAAE18.</p>
This text font color is #FAAE18.
.myBgColor { background-color: #FAAE18; }
<div style="background-color:#FAAE18">Inner text</div>
This div background color is #FAAE18.
.myBorderColor { border: 1px solid #FAAE18; }
<div style="border:3px solid #FAAE18">Div</div>
This div border color is #FAAE18.
.myOpacity80 { color: #FAAE18; opacity: 0.8; }
<p style="color:#FAAE18;opacity:0.8;">80%</p>
Text with #FAAE18 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FAAE18;}
<p style="text-shadow: 3px 3px 1px #FAAE18">Text here.</p>
This text has shadow with #FAAE18 color.
.textShadow {text-shadow: 3px 3px 1px #FAAE18, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FAAE18, 5px 5px 20px red">Text here.</p>
This text has shadow with #FAAE18 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FAAE18, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FAAE18, Direction=45, Strength=4)">Text</p>
This text has shadow with #FAAE18 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FAAE18; -webkit-box-shadow: 1px 1px 3px 2px #FAAE18; box-shadow: 1px 1px 3px 2px #FAAE18; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FAAE18; -webkit-box-shadow: 1px 1px 3px 2px #FAAE18; box-shadow:1px 1px 3px 2px #FAAE18;">
Div content here</div>
This text has color #FAAE18 on black background.
This text has color #FAAE18 on white background.
This text has black color on #FAAE18 background.
This text has white color on #FAAE18 background.