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