HEX: #F9EFDA
RGB: (249,239,218)
#F9EFDA contains red, green and blue colors in about the same proportion. Web safe color of #F9EFDA is #FFFFCC (or #FFC).
#F9EFDA color RGB value is (249,239,218).
RGB: (249,239,218) (98%,94%,85%)
R 249 of 255 = 98%
G 239 of 255 = 94%
B 218 of 255 = 85%
R + G + B ~ 92%. #F9EFDA is light color.
R + G + B =
249 + 239 + 218 = 706 (100%)
R 249 of 706 ~ 35.27%
G 239 of 706 ~ 33.85%
B 218 of 706 ~ 30.88%
#F9EFDA color CMYK value is (0,4,12,2).
CMYK: (0,4,12,2) C0M4Y12K2 (0%,4%,12%,2%) (0.00/0.04/0.12/0.02)
F9 | EF | DA | |
---|---|---|---|
RGB | 249 | 239 | 218 |
HSL | 41° | 72.09% | 91.57% |
HSB/HSV | 41° | 12.45% | 97.65% |
CMYK | 0.00% | 4.02% | 12.45% |
2.35% |
HEX | F9 | EF | DA |
Decimal | 249 | 239 | 218 |
Binary | 11111001 | 11101111 | 11011010 |
Octal | 371 | 357 | 332 |
Examples of css and html codes for elements with #F9EFDA color. Also use rgb(249,239,218) instead hex code.
.myTextColor { color: #F9EFDA; }
<p style="color:#F9EFDA">This sample text font color is #F9EFDA.</p>
This text font color is #F9EFDA.
.myBgColor { background-color: #F9EFDA; }
<div style="background-color:#F9EFDA">Inner text</div>
This div background color is #F9EFDA.
.myBorderColor { border: 1px solid #F9EFDA; }
<div style="border:3px solid #F9EFDA">Div</div>
This div border color is #F9EFDA.
.myOpacity80 { color: #F9EFDA; opacity: 0.8; }
<p style="color:#F9EFDA;opacity:0.8;">80%</p>
Text with #F9EFDA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9EFDA;}
<p style="text-shadow: 3px 3px 1px #F9EFDA">Text here.</p>
This text has shadow with #F9EFDA color.
.textShadow {text-shadow: 3px 3px 1px #F9EFDA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9EFDA, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9EFDA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9EFDA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9EFDA, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9EFDA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9EFDA; -webkit-box-shadow: 1px 1px 3px 2px #F9EFDA; box-shadow: 1px 1px 3px 2px #F9EFDA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9EFDA; -webkit-box-shadow: 1px 1px 3px 2px #F9EFDA; box-shadow:1px 1px 3px 2px #F9EFDA;">
Div content here</div>
This text has color #F9EFDA on black background.
This text has color #F9EFDA on white background.
This text has black color on #F9EFDA background.
This text has white color on #F9EFDA background.