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