HEX: #F9EEED
RGB: (249,238,237)
#F9EEED contains red, green and blue colors in about the same proportion. Web safe color of #F9EEED is #FFFFFF (or #FFF).
#F9EEED color RGB value is (249,238,237).
RGB: (249,238,237) (98%,93%,93%)
R 249 of 255 = 98%
G 238 of 255 = 93%
B 237 of 255 = 93%
R + G + B ~ 95%. #F9EEED is light color.
R + G + B =
249 + 238 + 237 = 724 (100%)
R 249 of 724 ~ 34.39%
G 238 of 724 ~ 32.87%
B 237 of 724 ~ 32.73%
#F9EEED color CMYK value is (0,4,5,2).
CMYK: (0,4,5,2) C0M4Y5K2 (0%,4%,5%,2%) (0.00/0.04/0.05/0.02)
F9 | EE | ED | |
---|---|---|---|
RGB | 249 | 238 | 237 |
HSL | 5° | 50.00% | 95.29% |
HSB/HSV | 5° | 4.82% | 97.65% |
CMYK | 0.00% | 4.42% | 4.82% |
2.35% |
HEX | F9 | EE | ED |
Decimal | 249 | 238 | 237 |
Binary | 11111001 | 11101110 | 11101101 |
Octal | 371 | 356 | 355 |
Examples of css and html codes for elements with #F9EEED color. Also use rgb(249,238,237) instead hex code.
.myTextColor { color: #F9EEED; }
<p style="color:#F9EEED">This sample text font color is #F9EEED.</p>
This text font color is #F9EEED.
.myBgColor { background-color: #F9EEED; }
<div style="background-color:#F9EEED">Inner text</div>
This div background color is #F9EEED.
.myBorderColor { border: 1px solid #F9EEED; }
<div style="border:3px solid #F9EEED">Div</div>
This div border color is #F9EEED.
.myOpacity80 { color: #F9EEED; opacity: 0.8; }
<p style="color:#F9EEED;opacity:0.8;">80%</p>
Text with #F9EEED color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9EEED;}
<p style="text-shadow: 3px 3px 1px #F9EEED">Text here.</p>
This text has shadow with #F9EEED color.
.textShadow {text-shadow: 3px 3px 1px #F9EEED, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9EEED, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9EEED primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9EEED, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9EEED, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9EEED and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9EEED; -webkit-box-shadow: 1px 1px 3px 2px #F9EEED; box-shadow: 1px 1px 3px 2px #F9EEED; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9EEED; -webkit-box-shadow: 1px 1px 3px 2px #F9EEED; box-shadow:1px 1px 3px 2px #F9EEED;">
Div content here</div>
This text has color #F9EEED on black background.
This text has color #F9EEED on white background.
This text has black color on #F9EEED background.
This text has white color on #F9EEED background.