HEX: #E0FFBB
RGB: (224,255,187)
#E0FFBB contains mainly red and green colors. Web safe color of #E0FFBB is #CCFFCC (or #CFC).
#E0FFBB color RGB value is (224,255,187).
RGB: (224,255,187) (88%,100%,73%)
R 224 of 255 = 88%
G 255 of 255 = 100%
B 187 of 255 = 73%
R + G + B ~ 87%. #E0FFBB is light color.
R + G + B =
224 + 255 + 187 = 666 (100%)
R 224 of 666 ~ 33.63%
G 255 of 666 ~ 38.29%
B 187 of 666 ~ 28.08%
#E0FFBB color CMYK value is (12,0,27,0).
CMYK: (12,0,27,0) C12M0Y27K0 (12%,0%,27%,0%) (0.12/0.00/0.27/0.00)
E0 | FF | BB | |
---|---|---|---|
RGB | 224 | 255 | 187 |
HSL | 87° | 100.00% | 86.67% |
HSB/HSV | 87° | 26.67% | 100.00% |
CMYK | 12.16% | 0.00% | 26.67% |
0.00% |
HEX | E0 | FF | BB |
Decimal | 224 | 255 | 187 |
Binary | 11100000 | 11111111 | 10111011 |
Octal | 340 | 377 | 273 |
Examples of css and html codes for elements with #E0FFBB color. Also use rgb(224,255,187) instead hex code.
.myTextColor { color: #E0FFBB; }
<p style="color:#E0FFBB">This sample text font color is #E0FFBB.</p>
This text font color is #E0FFBB.
.myBgColor { background-color: #E0FFBB; }
<div style="background-color:#E0FFBB">Inner text</div>
This div background color is #E0FFBB.
.myBorderColor { border: 1px solid #E0FFBB; }
<div style="border:3px solid #E0FFBB">Div</div>
This div border color is #E0FFBB.
.myOpacity80 { color: #E0FFBB; opacity: 0.8; }
<p style="color:#E0FFBB;opacity:0.8;">80%</p>
Text with #E0FFBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0FFBB;}
<p style="text-shadow: 3px 3px 1px #E0FFBB">Text here.</p>
This text has shadow with #E0FFBB color.
.textShadow {text-shadow: 3px 3px 1px #E0FFBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0FFBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0FFBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0FFBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0FFBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0FFBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0FFBB; -webkit-box-shadow: 1px 1px 3px 2px #E0FFBB; box-shadow: 1px 1px 3px 2px #E0FFBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0FFBB; -webkit-box-shadow: 1px 1px 3px 2px #E0FFBB; box-shadow:1px 1px 3px 2px #E0FFBB;">
Div content here</div>
This text has color #E0FFBB on black background.
This text has color #E0FFBB on white background.
This text has black color on #E0FFBB background.
This text has white color on #E0FFBB background.