HEX: #E5FADB
RGB: (229,250,219)
#E5FADB contains red, green and blue colors in about the same proportion. Web safe color of #E5FADB is #CCFFCC (or #CFC).
#E5FADB color RGB value is (229,250,219).
RGB: (229,250,219) (90%,98%,86%)
R 229 of 255 = 90%
G 250 of 255 = 98%
B 219 of 255 = 86%
R + G + B ~ 91%. #E5FADB is light color.
R + G + B =
229 + 250 + 219 = 698 (100%)
R 229 of 698 ~ 32.81%
G 250 of 698 ~ 35.82%
B 219 of 698 ~ 31.38%
#E5FADB color CMYK value is (8,0,12,2).
CMYK: (8,0,12,2) C8M0Y12K2 (8%,0%,12%,2%) (0.08/0.00/0.12/0.02)
E5 | FA | DB | |
---|---|---|---|
RGB | 229 | 250 | 219 |
HSL | 101° | 75.61% | 91.96% |
HSB/HSV | 101° | 12.40% | 98.04% |
CMYK | 8.40% | 0.00% | 12.40% |
1.96% |
HEX | E5 | FA | DB |
Decimal | 229 | 250 | 219 |
Binary | 11100101 | 11111010 | 11011011 |
Octal | 345 | 372 | 333 |
Examples of css and html codes for elements with #E5FADB color. Also use rgb(229,250,219) instead hex code.
.myTextColor { color: #E5FADB; }
<p style="color:#E5FADB">This sample text font color is #E5FADB.</p>
This text font color is #E5FADB.
.myBgColor { background-color: #E5FADB; }
<div style="background-color:#E5FADB">Inner text</div>
This div background color is #E5FADB.
.myBorderColor { border: 1px solid #E5FADB; }
<div style="border:3px solid #E5FADB">Div</div>
This div border color is #E5FADB.
.myOpacity80 { color: #E5FADB; opacity: 0.8; }
<p style="color:#E5FADB;opacity:0.8;">80%</p>
Text with #E5FADB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5FADB;}
<p style="text-shadow: 3px 3px 1px #E5FADB">Text here.</p>
This text has shadow with #E5FADB color.
.textShadow {text-shadow: 3px 3px 1px #E5FADB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5FADB, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5FADB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5FADB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5FADB, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5FADB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5FADB; -webkit-box-shadow: 1px 1px 3px 2px #E5FADB; box-shadow: 1px 1px 3px 2px #E5FADB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5FADB; -webkit-box-shadow: 1px 1px 3px 2px #E5FADB; box-shadow:1px 1px 3px 2px #E5FADB;">
Div content here</div>
This text has color #E5FADB on black background.
This text has color #E5FADB on white background.
This text has black color on #E5FADB background.
This text has white color on #E5FADB background.