HEX: #F0FACB
RGB: (240,250,203)
#F0FACB contains red, green and blue colors in about the same proportion. Web safe color of #F0FACB is #FFFFCC (or #FFC).
#F0FACB color RGB value is (240,250,203).
RGB: (240,250,203) (94%,98%,80%)
R 240 of 255 = 94%
G 250 of 255 = 98%
B 203 of 255 = 80%
R + G + B ~ 91%. #F0FACB is light color.
R + G + B =
240 + 250 + 203 = 693 (100%)
R 240 of 693 ~ 34.63%
G 250 of 693 ~ 36.08%
B 203 of 693 ~ 29.29%
#F0FACB color CMYK value is (4,0,19,2).
CMYK: (4,0,19,2) C4M0Y19K2 (4%,0%,19%,2%) (0.04/0.00/0.19/0.02)
F0 | FA | CB | |
---|---|---|---|
RGB | 240 | 250 | 203 |
HSL | 73° | 82.46% | 88.82% |
HSB/HSV | 73° | 18.80% | 98.04% |
CMYK | 4.00% | 0.00% | 18.80% |
1.96% |
HEX | F0 | FA | CB |
Decimal | 240 | 250 | 203 |
Binary | 11110000 | 11111010 | 11001011 |
Octal | 360 | 372 | 313 |
Examples of css and html codes for elements with #F0FACB color. Also use rgb(240,250,203) instead hex code.
.myTextColor { color: #F0FACB; }
<p style="color:#F0FACB">This sample text font color is #F0FACB.</p>
This text font color is #F0FACB.
.myBgColor { background-color: #F0FACB; }
<div style="background-color:#F0FACB">Inner text</div>
This div background color is #F0FACB.
.myBorderColor { border: 1px solid #F0FACB; }
<div style="border:3px solid #F0FACB">Div</div>
This div border color is #F0FACB.
.myOpacity80 { color: #F0FACB; opacity: 0.8; }
<p style="color:#F0FACB;opacity:0.8;">80%</p>
Text with #F0FACB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F0FACB;}
<p style="text-shadow: 3px 3px 1px #F0FACB">Text here.</p>
This text has shadow with #F0FACB color.
.textShadow {text-shadow: 3px 3px 1px #F0FACB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F0FACB, 5px 5px 20px red">Text here.</p>
This text has shadow with #F0FACB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F0FACB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F0FACB, Direction=45, Strength=4)">Text</p>
This text has shadow with #F0FACB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F0FACB; -webkit-box-shadow: 1px 1px 3px 2px #F0FACB; box-shadow: 1px 1px 3px 2px #F0FACB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F0FACB; -webkit-box-shadow: 1px 1px 3px 2px #F0FACB; box-shadow:1px 1px 3px 2px #F0FACB;">
Div content here</div>
This text has color #F0FACB on black background.
This text has color #F0FACB on white background.
This text has black color on #F0FACB background.
This text has white color on #F0FACB background.