HEX: #EDE2CD
RGB: (237,226,205)
#EDE2CD contains red, green and blue colors in about the same proportion. Web safe color of #EDE2CD is #FFCCCC (or #FCC).
#EDE2CD color RGB value is (237,226,205).
RGB: (237,226,205) (93%,89%,80%)
R 237 of 255 = 93%
G 226 of 255 = 89%
B 205 of 255 = 80%
R + G + B ~ 87%. #EDE2CD is light color.
R + G + B =
237 + 226 + 205 = 668 (100%)
R 237 of 668 ~ 35.48%
G 226 of 668 ~ 33.83%
B 205 of 668 ~ 30.69%
#EDE2CD color CMYK value is (0,5,14,7).
CMYK: (0,5,14,7) C0M5Y14K7 (0%,5%,14%,7%) (0.00/0.05/0.14/0.07)
ED | E2 | CD | |
---|---|---|---|
RGB | 237 | 226 | 205 |
HSL | 39° | 47.06% | 86.67% |
HSB/HSV | 39° | 13.50% | 92.94% |
CMYK | 0.00% | 4.64% | 13.50% |
7.06% |
HEX | ED | E2 | CD |
Decimal | 237 | 226 | 205 |
Binary | 11101101 | 11100010 | 11001101 |
Octal | 355 | 342 | 315 |
Examples of css and html codes for elements with #EDE2CD color. Also use rgb(237,226,205) instead hex code.
.myTextColor { color: #EDE2CD; }
<p style="color:#EDE2CD">This sample text font color is #EDE2CD.</p>
This text font color is #EDE2CD.
.myBgColor { background-color: #EDE2CD; }
<div style="background-color:#EDE2CD">Inner text</div>
This div background color is #EDE2CD.
.myBorderColor { border: 1px solid #EDE2CD; }
<div style="border:3px solid #EDE2CD">Div</div>
This div border color is #EDE2CD.
.myOpacity80 { color: #EDE2CD; opacity: 0.8; }
<p style="color:#EDE2CD;opacity:0.8;">80%</p>
Text with #EDE2CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE2CD;}
<p style="text-shadow: 3px 3px 1px #EDE2CD">Text here.</p>
This text has shadow with #EDE2CD color.
.textShadow {text-shadow: 3px 3px 1px #EDE2CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE2CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE2CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE2CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE2CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE2CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE2CD; -webkit-box-shadow: 1px 1px 3px 2px #EDE2CD; box-shadow: 1px 1px 3px 2px #EDE2CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE2CD; -webkit-box-shadow: 1px 1px 3px 2px #EDE2CD; box-shadow:1px 1px 3px 2px #EDE2CD;">
Div content here</div>
This text has color #EDE2CD on black background.
This text has color #EDE2CD on white background.
This text has black color on #EDE2CD background.
This text has white color on #EDE2CD background.