HEX: #E0FFDB
RGB: (224,255,219)
#E0FFDB contains red, green and blue colors in about the same proportion. Web safe color of #E0FFDB is #CCFFCC (or #CFC).
#E0FFDB color RGB value is (224,255,219).
RGB: (224,255,219) (88%,100%,86%)
R 224 of 255 = 88%
G 255 of 255 = 100%
B 219 of 255 = 86%
R + G + B ~ 91%. #E0FFDB is light color.
R + G + B =
224 + 255 + 219 = 698 (100%)
R 224 of 698 ~ 32.09%
G 255 of 698 ~ 36.53%
B 219 of 698 ~ 31.38%
#E0FFDB color CMYK value is (12,0,14,0).
CMYK: (12,0,14,0) C12M0Y14K0 (12%,0%,14%,0%) (0.12/0.00/0.14/0.00)
E0 | FF | DB | |
---|---|---|---|
RGB | 224 | 255 | 219 |
HSL | 112° | 100.00% | 92.94% |
HSB/HSV | 112° | 14.12% | 100.00% |
CMYK | 12.16% | 0.00% | 14.12% |
0.00% |
HEX | E0 | FF | DB |
Decimal | 224 | 255 | 219 |
Binary | 11100000 | 11111111 | 11011011 |
Octal | 340 | 377 | 333 |
Examples of css and html codes for elements with #E0FFDB color. Also use rgb(224,255,219) instead hex code.
.myTextColor { color: #E0FFDB; }
<p style="color:#E0FFDB">This sample text font color is #E0FFDB.</p>
This text font color is #E0FFDB.
.myBgColor { background-color: #E0FFDB; }
<div style="background-color:#E0FFDB">Inner text</div>
This div background color is #E0FFDB.
.myBorderColor { border: 1px solid #E0FFDB; }
<div style="border:3px solid #E0FFDB">Div</div>
This div border color is #E0FFDB.
.myOpacity80 { color: #E0FFDB; opacity: 0.8; }
<p style="color:#E0FFDB;opacity:0.8;">80%</p>
Text with #E0FFDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0FFDB;}
<p style="text-shadow: 3px 3px 1px #E0FFDB">Text here.</p>
This text has shadow with #E0FFDB color.
.textShadow {text-shadow: 3px 3px 1px #E0FFDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0FFDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0FFDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0FFDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0FFDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0FFDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0FFDB; -webkit-box-shadow: 1px 1px 3px 2px #E0FFDB; box-shadow: 1px 1px 3px 2px #E0FFDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0FFDB; -webkit-box-shadow: 1px 1px 3px 2px #E0FFDB; box-shadow:1px 1px 3px 2px #E0FFDB;">
Div content here</div>
This text has color #E0FFDB on black background.
This text has color #E0FFDB on white background.
This text has black color on #E0FFDB background.
This text has white color on #E0FFDB background.