HEX: #F9EFEC
RGB: (249,239,236)
#F9EFEC contains red, green and blue colors in about the same proportion. Web safe color of #F9EFEC is #FFFFFF (or #FFF).
#F9EFEC color RGB value is (249,239,236).
RGB: (249,239,236) (98%,94%,93%)
R 249 of 255 = 98%
G 239 of 255 = 94%
B 236 of 255 = 93%
R + G + B ~ 95%. #F9EFEC is light color.
R + G + B =
249 + 239 + 236 = 724 (100%)
R 249 of 724 ~ 34.39%
G 239 of 724 ~ 33.01%
B 236 of 724 ~ 32.6%
#F9EFEC 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 | EF | EC | |
---|---|---|---|
RGB | 249 | 239 | 236 |
HSL | 14° | 52.00% | 95.10% |
HSB/HSV | 14° | 5.22% | 97.65% |
CMYK | 0.00% | 4.02% | 5.22% |
2.35% |
HEX | F9 | EF | EC |
Decimal | 249 | 239 | 236 |
Binary | 11111001 | 11101111 | 11101100 |
Octal | 371 | 357 | 354 |
Examples of css and html codes for elements with #F9EFEC color. Also use rgb(249,239,236) instead hex code.
.myTextColor { color: #F9EFEC; }
<p style="color:#F9EFEC">This sample text font color is #F9EFEC.</p>
This text font color is #F9EFEC.
.myBgColor { background-color: #F9EFEC; }
<div style="background-color:#F9EFEC">Inner text</div>
This div background color is #F9EFEC.
.myBorderColor { border: 1px solid #F9EFEC; }
<div style="border:3px solid #F9EFEC">Div</div>
This div border color is #F9EFEC.
.myOpacity80 { color: #F9EFEC; opacity: 0.8; }
<p style="color:#F9EFEC;opacity:0.8;">80%</p>
Text with #F9EFEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9EFEC;}
<p style="text-shadow: 3px 3px 1px #F9EFEC">Text here.</p>
This text has shadow with #F9EFEC color.
.textShadow {text-shadow: 3px 3px 1px #F9EFEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9EFEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9EFEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9EFEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9EFEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9EFEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9EFEC; -webkit-box-shadow: 1px 1px 3px 2px #F9EFEC; box-shadow: 1px 1px 3px 2px #F9EFEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9EFEC; -webkit-box-shadow: 1px 1px 3px 2px #F9EFEC; box-shadow:1px 1px 3px 2px #F9EFEC;">
Div content here</div>
This text has color #F9EFEC on black background.
This text has color #F9EFEC on white background.
This text has black color on #F9EFEC background.
This text has white color on #F9EFEC background.