HEX: #F0F4FB
RGB: (240,244,251)
#F0F4FB contains red, green and blue colors in about the same proportion. Web safe color of #F0F4FB is #FFFFFF (or #FFF).
#F0F4FB color RGB value is (240,244,251).
RGB: (240,244,251) (94%,96%,98%)
R 240 of 255 = 94%
G 244 of 255 = 96%
B 251 of 255 = 98%
R + G + B ~ 96%. #F0F4FB is light color.
R + G + B =
240 + 244 + 251 = 735 (100%)
R 240 of 735 ~ 32.65%
G 244 of 735 ~ 33.2%
B 251 of 735 ~ 34.15%
#F0F4FB color CMYK value is (4,3,0,2).
CMYK: (4,3,0,2) C4M3Y0K2 (4%,3%,0%,2%) (0.04/0.03/0.00/0.02)
F0 | F4 | FB | |
---|---|---|---|
RGB | 240 | 244 | 251 |
HSL | 218° | 57.89% | 96.27% |
HSB/HSV | 218° | 4.38% | 98.43% |
CMYK | 4.38% | 2.79% | 0.00% |
1.57% |
HEX | F0 | F4 | FB |
Decimal | 240 | 244 | 251 |
Binary | 11110000 | 11110100 | 11111011 |
Octal | 360 | 364 | 373 |
Examples of css and html codes for elements with #F0F4FB color. Also use rgb(240,244,251) instead hex code.
.myTextColor { color: #F0F4FB; }
<p style="color:#F0F4FB">This sample text font color is #F0F4FB.</p>
This text font color is #F0F4FB.
.myBgColor { background-color: #F0F4FB; }
<div style="background-color:#F0F4FB">Inner text</div>
This div background color is #F0F4FB.
.myBorderColor { border: 1px solid #F0F4FB; }
<div style="border:3px solid #F0F4FB">Div</div>
This div border color is #F0F4FB.
.myOpacity80 { color: #F0F4FB; opacity: 0.8; }
<p style="color:#F0F4FB;opacity:0.8;">80%</p>
Text with #F0F4FB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0F4FB;}
<p style="text-shadow: 3px 3px 1px #F0F4FB">Text here.</p>
This text has shadow with #F0F4FB color.
.textShadow {text-shadow: 3px 3px 1px #F0F4FB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0F4FB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0F4FB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0F4FB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0F4FB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0F4FB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0F4FB; -webkit-box-shadow: 1px 1px 3px 2px #F0F4FB; box-shadow: 1px 1px 3px 2px #F0F4FB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0F4FB; -webkit-box-shadow: 1px 1px 3px 2px #F0F4FB; box-shadow:1px 1px 3px 2px #F0F4FB;">
Div content here</div>
This text has color #F0F4FB on black background.
This text has color #F0F4FB on white background.
This text has black color on #F0F4FB background.
This text has white color on #F0F4FB background.