HEX: #E5F6DD
RGB: (229,246,221)
#E5F6DD contains red, green and blue colors in about the same proportion. Web safe color of #E5F6DD is #CCFFCC (or #CFC).
#E5F6DD color RGB value is (229,246,221).
RGB: (229,246,221) (90%,96%,87%)
R 229 of 255 = 90%
G 246 of 255 = 96%
B 221 of 255 = 87%
R + G + B ~ 91%. #E5F6DD is light color.
R + G + B =
229 + 246 + 221 = 696 (100%)
R 229 of 696 ~ 32.9%
G 246 of 696 ~ 35.34%
B 221 of 696 ~ 31.75%
#E5F6DD color CMYK value is (7,0,10,4).
CMYK: (7,0,10,4) C7M0Y10K4 (7%,0%,10%,4%) (0.07/0.00/0.10/0.04)
E5 | F6 | DD | |
---|---|---|---|
RGB | 229 | 246 | 221 |
HSL | 101° | 58.14% | 91.57% |
HSB/HSV | 101° | 10.16% | 96.47% |
CMYK | 6.91% | 0.00% | 10.16% |
3.53% |
HEX | E5 | F6 | DD |
Decimal | 229 | 246 | 221 |
Binary | 11100101 | 11110110 | 11011101 |
Octal | 345 | 366 | 335 |
Examples of css and html codes for elements with #E5F6DD color. Also use rgb(229,246,221) instead hex code.
.myTextColor { color: #E5F6DD; }
<p style="color:#E5F6DD">This sample text font color is #E5F6DD.</p>
This text font color is #E5F6DD.
.myBgColor { background-color: #E5F6DD; }
<div style="background-color:#E5F6DD">Inner text</div>
This div background color is #E5F6DD.
.myBorderColor { border: 1px solid #E5F6DD; }
<div style="border:3px solid #E5F6DD">Div</div>
This div border color is #E5F6DD.
.myOpacity80 { color: #E5F6DD; opacity: 0.8; }
<p style="color:#E5F6DD;opacity:0.8;">80%</p>
Text with #E5F6DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5F6DD;}
<p style="text-shadow: 3px 3px 1px #E5F6DD">Text here.</p>
This text has shadow with #E5F6DD color.
.textShadow {text-shadow: 3px 3px 1px #E5F6DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5F6DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5F6DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5F6DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5F6DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5F6DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5F6DD; -webkit-box-shadow: 1px 1px 3px 2px #E5F6DD; box-shadow: 1px 1px 3px 2px #E5F6DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5F6DD; -webkit-box-shadow: 1px 1px 3px 2px #E5F6DD; box-shadow:1px 1px 3px 2px #E5F6DD;">
Div content here</div>
This text has color #E5F6DD on black background.
This text has color #E5F6DD on white background.
This text has black color on #E5F6DD background.
This text has white color on #E5F6DD background.