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