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