HEX: #F9EDDE
RGB: (249,237,222)
#F9EDDE contains red, green and blue colors in about the same proportion. Web safe color of #F9EDDE is #FFFFCC (or #FFC).
#F9EDDE color RGB value is (249,237,222).
RGB: (249,237,222) (98%,93%,87%)
R 249 of 255 = 98%
G 237 of 255 = 93%
B 222 of 255 = 87%
R + G + B ~ 93%. #F9EDDE is light color.
R + G + B =
249 + 237 + 222 = 708 (100%)
R 249 of 708 ~ 35.17%
G 237 of 708 ~ 33.47%
B 222 of 708 ~ 31.36%
#F9EDDE color CMYK value is (0,5,11,2).
CMYK: (0,5,11,2) C0M5Y11K2 (0%,5%,11%,2%) (0.00/0.05/0.11/0.02)
F9 | ED | DE | |
---|---|---|---|
RGB | 249 | 237 | 222 |
HSL | 33° | 69.23% | 92.35% |
HSB/HSV | 33° | 10.84% | 97.65% |
CMYK | 0.00% | 4.82% | 10.84% |
2.35% |
HEX | F9 | ED | DE |
Decimal | 249 | 237 | 222 |
Binary | 11111001 | 11101101 | 11011110 |
Octal | 371 | 355 | 336 |
Examples of css and html codes for elements with #F9EDDE color. Also use rgb(249,237,222) instead hex code.
.myTextColor { color: #F9EDDE; }
<p style="color:#F9EDDE">This sample text font color is #F9EDDE.</p>
This text font color is #F9EDDE.
.myBgColor { background-color: #F9EDDE; }
<div style="background-color:#F9EDDE">Inner text</div>
This div background color is #F9EDDE.
.myBorderColor { border: 1px solid #F9EDDE; }
<div style="border:3px solid #F9EDDE">Div</div>
This div border color is #F9EDDE.
.myOpacity80 { color: #F9EDDE; opacity: 0.8; }
<p style="color:#F9EDDE;opacity:0.8;">80%</p>
Text with #F9EDDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9EDDE;}
<p style="text-shadow: 3px 3px 1px #F9EDDE">Text here.</p>
This text has shadow with #F9EDDE color.
.textShadow {text-shadow: 3px 3px 1px #F9EDDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9EDDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9EDDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9EDDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9EDDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9EDDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9EDDE; -webkit-box-shadow: 1px 1px 3px 2px #F9EDDE; box-shadow: 1px 1px 3px 2px #F9EDDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9EDDE; -webkit-box-shadow: 1px 1px 3px 2px #F9EDDE; box-shadow:1px 1px 3px 2px #F9EDDE;">
Div content here</div>
This text has color #F9EDDE on black background.
This text has color #F9EDDE on white background.
This text has black color on #F9EDDE background.
This text has white color on #F9EDDE background.