HEX: #F9EA7B
RGB: (249,234,123)
#F9EA7B contains mainly red and green colors. Web safe color of #F9EA7B is #FFFF66 (or #FF6).
#F9EA7B color RGB value is (249,234,123).
RGB: (249,234,123) (98%,92%,48%)
R 249 of 255 = 98%
G 234 of 255 = 92%
B 123 of 255 = 48%
R + G + B ~ 79%. #F9EA7B is quite light color.
R + G + B =
249 + 234 + 123 = 606 (100%)
R 249 of 606 ~ 41.09%
G 234 of 606 ~ 38.61%
B 123 of 606 ~ 20.3%
#F9EA7B color CMYK value is (0,6,51,2).
CMYK: (0,6,51,2) C0M6Y51K2 (0%,6%,51%,2%) (0.00/0.06/0.51/0.02)
F9 | EA | 7B | |
---|---|---|---|
RGB | 249 | 234 | 123 |
HSL | 53° | 91.30% | 72.94% |
HSB/HSV | 53° | 50.60% | 97.65% |
CMYK | 0.00% | 6.02% | 50.60% |
2.35% |
HEX | F9 | EA | 7B |
Decimal | 249 | 234 | 123 |
Binary | 11111001 | 11101010 | 1111011 |
Octal | 371 | 352 | 173 |
Examples of css and html codes for elements with #F9EA7B color. Also use rgb(249,234,123) instead hex code.
.myTextColor { color: #F9EA7B; }
<p style="color:#F9EA7B">This sample text font color is #F9EA7B.</p>
This text font color is #F9EA7B.
.myBgColor { background-color: #F9EA7B; }
<div style="background-color:#F9EA7B">Inner text</div>
This div background color is #F9EA7B.
.myBorderColor { border: 1px solid #F9EA7B; }
<div style="border:3px solid #F9EA7B">Div</div>
This div border color is #F9EA7B.
.myOpacity80 { color: #F9EA7B; opacity: 0.8; }
<p style="color:#F9EA7B;opacity:0.8;">80%</p>
Text with #F9EA7B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9EA7B;}
<p style="text-shadow: 3px 3px 1px #F9EA7B">Text here.</p>
This text has shadow with #F9EA7B color.
.textShadow {text-shadow: 3px 3px 1px #F9EA7B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9EA7B, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9EA7B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9EA7B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9EA7B, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9EA7B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9EA7B; -webkit-box-shadow: 1px 1px 3px 2px #F9EA7B; box-shadow: 1px 1px 3px 2px #F9EA7B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9EA7B; -webkit-box-shadow: 1px 1px 3px 2px #F9EA7B; box-shadow:1px 1px 3px 2px #F9EA7B;">
Div content here</div>
This text has color #F9EA7B on black background.
This text has color #F9EA7B on white background.
This text has black color on #F9EA7B background.
This text has white color on #F9EA7B background.