HEX: #F0FEFB
RGB: (240,254,251)
#F0FEFB contains red, green and blue colors in about the same proportion. Web safe color of #F0FEFB is #FFFFFF (or #FFF).
#F0FEFB color RGB value is (240,254,251).
RGB: (240,254,251) (94%,100%,98%)
R 240 of 255 = 94%
G 254 of 255 = 100%
B 251 of 255 = 98%
R + G + B ~ 97%. #F0FEFB is light color.
R + G + B =
240 + 254 + 251 = 745 (100%)
R 240 of 745 ~ 32.21%
G 254 of 745 ~ 34.09%
B 251 of 745 ~ 33.69%
#F0FEFB color CMYK value is (6,0,1,0).
CMYK: (6,0,1,0) C6M0Y1K0 (6%,0%,1%,0%) (0.06/0.00/0.01/0.00)
F0 | FE | FB | |
---|---|---|---|
RGB | 240 | 254 | 251 |
HSL | 167° | 87.50% | 96.86% |
HSB/HSV | 167° | 5.51% | 99.61% |
CMYK | 5.51% | 0.00% | 1.18% |
0.39% |
HEX | F0 | FE | FB |
Decimal | 240 | 254 | 251 |
Binary | 11110000 | 11111110 | 11111011 |
Octal | 360 | 376 | 373 |
Examples of css and html codes for elements with #F0FEFB color. Also use rgb(240,254,251) instead hex code.
.myTextColor { color: #F0FEFB; }
<p style="color:#F0FEFB">This sample text font color is #F0FEFB.</p>
This text font color is #F0FEFB.
.myBgColor { background-color: #F0FEFB; }
<div style="background-color:#F0FEFB">Inner text</div>
This div background color is #F0FEFB.
.myBorderColor { border: 1px solid #F0FEFB; }
<div style="border:3px solid #F0FEFB">Div</div>
This div border color is #F0FEFB.
.myOpacity80 { color: #F0FEFB; opacity: 0.8; }
<p style="color:#F0FEFB;opacity:0.8;">80%</p>
Text with #F0FEFB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0FEFB;}
<p style="text-shadow: 3px 3px 1px #F0FEFB">Text here.</p>
This text has shadow with #F0FEFB color.
.textShadow {text-shadow: 3px 3px 1px #F0FEFB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0FEFB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0FEFB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0FEFB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0FEFB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0FEFB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0FEFB; -webkit-box-shadow: 1px 1px 3px 2px #F0FEFB; box-shadow: 1px 1px 3px 2px #F0FEFB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0FEFB; -webkit-box-shadow: 1px 1px 3px 2px #F0FEFB; box-shadow:1px 1px 3px 2px #F0FEFB;">
Div content here</div>
This text has color #F0FEFB on black background.
This text has color #F0FEFB on white background.
This text has black color on #F0FEFB background.
This text has white color on #F0FEFB background.