HEX: #F0FAEB
RGB: (240,250,235)
#F0FAEB contains red, green and blue colors in about the same proportion. Web safe color of #F0FAEB is #FFFFFF (or #FFF).
#F0FAEB color RGB value is (240,250,235).
RGB: (240,250,235) (94%,98%,92%)
R 240 of 255 = 94%
G 250 of 255 = 98%
B 235 of 255 = 92%
R + G + B ~ 95%. #F0FAEB is light color.
R + G + B =
240 + 250 + 235 = 725 (100%)
R 240 of 725 ~ 33.1%
G 250 of 725 ~ 34.48%
B 235 of 725 ~ 32.41%
#F0FAEB color CMYK value is (4,0,6,2).
CMYK: (4,0,6,2) C4M0Y6K2 (4%,0%,6%,2%) (0.04/0.00/0.06/0.02)
F0 | FA | EB | |
---|---|---|---|
RGB | 240 | 250 | 235 |
HSL | 100° | 60.00% | 95.10% |
HSB/HSV | 100° | 6.00% | 98.04% |
CMYK | 4.00% | 0.00% | 6.00% |
1.96% |
HEX | F0 | FA | EB |
Decimal | 240 | 250 | 235 |
Binary | 11110000 | 11111010 | 11101011 |
Octal | 360 | 372 | 353 |
Examples of css and html codes for elements with #F0FAEB color. Also use rgb(240,250,235) instead hex code.
.myTextColor { color: #F0FAEB; }
<p style="color:#F0FAEB">This sample text font color is #F0FAEB.</p>
This text font color is #F0FAEB.
.myBgColor { background-color: #F0FAEB; }
<div style="background-color:#F0FAEB">Inner text</div>
This div background color is #F0FAEB.
.myBorderColor { border: 1px solid #F0FAEB; }
<div style="border:3px solid #F0FAEB">Div</div>
This div border color is #F0FAEB.
.myOpacity80 { color: #F0FAEB; opacity: 0.8; }
<p style="color:#F0FAEB;opacity:0.8;">80%</p>
Text with #F0FAEB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0FAEB;}
<p style="text-shadow: 3px 3px 1px #F0FAEB">Text here.</p>
This text has shadow with #F0FAEB color.
.textShadow {text-shadow: 3px 3px 1px #F0FAEB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0FAEB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0FAEB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0FAEB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0FAEB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0FAEB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0FAEB; -webkit-box-shadow: 1px 1px 3px 2px #F0FAEB; box-shadow: 1px 1px 3px 2px #F0FAEB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0FAEB; -webkit-box-shadow: 1px 1px 3px 2px #F0FAEB; box-shadow:1px 1px 3px 2px #F0FAEB;">
Div content here</div>
This text has color #F0FAEB on black background.
This text has color #F0FAEB on white background.
This text has black color on #F0FAEB background.
This text has white color on #F0FAEB background.