HEX: #F6FDFB
RGB: (246,253,251)
#F6FDFB contains red, green and blue colors in about the same proportion. Web safe color of #F6FDFB is #FFFFFF (or #FFF).
#F6FDFB color RGB value is (246,253,251).
RGB: (246,253,251) (96%,99%,98%)
R 246 of 255 = 96%
G 253 of 255 = 99%
B 251 of 255 = 98%
R + G + B ~ 98%. #F6FDFB is light color.
R + G + B =
246 + 253 + 251 = 750 (100%)
R 246 of 750 ~ 32.8%
G 253 of 750 ~ 33.73%
B 251 of 750 ~ 33.47%
#F6FDFB color CMYK value is (3,0,1,1).
CMYK: (3,0,1,1) C3M0Y1K1 (3%,0%,1%,1%) (0.03/0.00/0.01/0.01)
F6 | FD | FB | |
---|---|---|---|
RGB | 246 | 253 | 251 |
HSL | 163° | 63.64% | 97.84% |
HSB/HSV | 163° | 2.77% | 99.22% |
CMYK | 2.77% | 0.00% | 0.79% |
0.78% |
HEX | F6 | FD | FB |
Decimal | 246 | 253 | 251 |
Binary | 11110110 | 11111101 | 11111011 |
Octal | 366 | 375 | 373 |
Examples of css and html codes for elements with #F6FDFB color. Also use rgb(246,253,251) instead hex code.
.myTextColor { color: #F6FDFB; }
<p style="color:#F6FDFB">This sample text font color is #F6FDFB.</p>
This text font color is #F6FDFB.
.myBgColor { background-color: #F6FDFB; }
<div style="background-color:#F6FDFB">Inner text</div>
This div background color is #F6FDFB.
.myBorderColor { border: 1px solid #F6FDFB; }
<div style="border:3px solid #F6FDFB">Div</div>
This div border color is #F6FDFB.
.myOpacity80 { color: #F6FDFB; opacity: 0.8; }
<p style="color:#F6FDFB;opacity:0.8;">80%</p>
Text with #F6FDFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F6FDFB;}
<p style="text-shadow: 3px 3px 1px #F6FDFB">Text here.</p>
This text has shadow with #F6FDFB color.
.textShadow {text-shadow: 3px 3px 1px #F6FDFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F6FDFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F6FDFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F6FDFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F6FDFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F6FDFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F6FDFB; -webkit-box-shadow: 1px 1px 3px 2px #F6FDFB; box-shadow: 1px 1px 3px 2px #F6FDFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F6FDFB; -webkit-box-shadow: 1px 1px 3px 2px #F6FDFB; box-shadow:1px 1px 3px 2px #F6FDFB;">
Div content here</div>
This text has color #F6FDFB on black background.
This text has color #F6FDFB on white background.
This text has black color on #F6FDFB background.
This text has white color on #F6FDFB background.