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