HEX: #F9E17D
RGB: (249,225,125)
#F9E17D contains mainly red and green colors. Web safe color of #F9E17D is #FFCC66 (or #FC6).
#F9E17D color RGB value is (249,225,125).
RGB: (249,225,125) (98%,88%,49%)
R 249 of 255 = 98%
G 225 of 255 = 88%
B 125 of 255 = 49%
R + G + B ~ 78%. #F9E17D is quite light color.
R + G + B =
249 + 225 + 125 = 599 (100%)
R 249 of 599 ~ 41.57%
G 225 of 599 ~ 37.56%
B 125 of 599 ~ 20.87%
#F9E17D color CMYK value is (0,10,50,2).
CMYK: (0,10,50,2) C0M10Y50K2 (0%,10%,50%,2%) (0.00/0.10/0.50/0.02)
F9 | E1 | 7D | |
---|---|---|---|
RGB | 249 | 225 | 125 |
HSL | 48° | 91.18% | 73.33% |
HSB/HSV | 48° | 49.80% | 97.65% |
CMYK | 0.00% | 9.64% | 49.80% |
2.35% |
HEX | F9 | E1 | 7D |
Decimal | 249 | 225 | 125 |
Binary | 11111001 | 11100001 | 1111101 |
Octal | 371 | 341 | 175 |
Examples of css and html codes for elements with #F9E17D color. Also use rgb(249,225,125) instead hex code.
.myTextColor { color: #F9E17D; }
<p style="color:#F9E17D">This sample text font color is #F9E17D.</p>
This text font color is #F9E17D.
.myBgColor { background-color: #F9E17D; }
<div style="background-color:#F9E17D">Inner text</div>
This div background color is #F9E17D.
.myBorderColor { border: 1px solid #F9E17D; }
<div style="border:3px solid #F9E17D">Div</div>
This div border color is #F9E17D.
.myOpacity80 { color: #F9E17D; opacity: 0.8; }
<p style="color:#F9E17D;opacity:0.8;">80%</p>
Text with #F9E17D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9E17D;}
<p style="text-shadow: 3px 3px 1px #F9E17D">Text here.</p>
This text has shadow with #F9E17D color.
.textShadow {text-shadow: 3px 3px 1px #F9E17D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9E17D, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9E17D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9E17D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9E17D, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9E17D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9E17D; -webkit-box-shadow: 1px 1px 3px 2px #F9E17D; box-shadow: 1px 1px 3px 2px #F9E17D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9E17D; -webkit-box-shadow: 1px 1px 3px 2px #F9E17D; box-shadow:1px 1px 3px 2px #F9E17D;">
Div content here</div>
This text has color #F9E17D on black background.
This text has color #F9E17D on white background.
This text has black color on #F9E17D background.
This text has white color on #F9E17D background.