HEX: #E5EBCD
RGB: (229,235,205)
#E5EBCD contains red, green and blue colors in about the same proportion. Web safe color of #E5EBCD is #CCFFCC (or #CFC).
#E5EBCD color RGB value is (229,235,205).
RGB: (229,235,205) (90%,92%,80%)
R 229 of 255 = 90%
G 235 of 255 = 92%
B 205 of 255 = 80%
R + G + B ~ 87%. #E5EBCD is light color.
R + G + B =
229 + 235 + 205 = 669 (100%)
R 229 of 669 ~ 34.23%
G 235 of 669 ~ 35.13%
B 205 of 669 ~ 30.64%
#E5EBCD color CMYK value is (3,0,13,8).
CMYK: (3,0,13,8) C3M0Y13K8 (3%,0%,13%,8%) (0.03/0.00/0.13/0.08)
E5 | EB | CD | |
---|---|---|---|
RGB | 229 | 235 | 205 |
HSL | 72° | 42.86% | 86.27% |
HSB/HSV | 72° | 12.77% | 92.16% |
CMYK | 2.55% | 0.00% | 12.77% |
7.84% |
HEX | E5 | EB | CD |
Decimal | 229 | 235 | 205 |
Binary | 11100101 | 11101011 | 11001101 |
Octal | 345 | 353 | 315 |
Examples of css and html codes for elements with #E5EBCD color. Also use rgb(229,235,205) instead hex code.
.myTextColor { color: #E5EBCD; }
<p style="color:#E5EBCD">This sample text font color is #E5EBCD.</p>
This text font color is #E5EBCD.
.myBgColor { background-color: #E5EBCD; }
<div style="background-color:#E5EBCD">Inner text</div>
This div background color is #E5EBCD.
.myBorderColor { border: 1px solid #E5EBCD; }
<div style="border:3px solid #E5EBCD">Div</div>
This div border color is #E5EBCD.
.myOpacity80 { color: #E5EBCD; opacity: 0.8; }
<p style="color:#E5EBCD;opacity:0.8;">80%</p>
Text with #E5EBCD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5EBCD;}
<p style="text-shadow: 3px 3px 1px #E5EBCD">Text here.</p>
This text has shadow with #E5EBCD color.
.textShadow {text-shadow: 3px 3px 1px #E5EBCD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5EBCD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5EBCD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5EBCD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5EBCD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5EBCD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5EBCD; -webkit-box-shadow: 1px 1px 3px 2px #E5EBCD; box-shadow: 1px 1px 3px 2px #E5EBCD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5EBCD; -webkit-box-shadow: 1px 1px 3px 2px #E5EBCD; box-shadow:1px 1px 3px 2px #E5EBCD;">
Div content here</div>
This text has color #E5EBCD on black background.
This text has color #E5EBCD on white background.
This text has black color on #E5EBCD background.
This text has white color on #E5EBCD background.