HEX: #EDDDDB
RGB: (237,221,219)
#EDDDDB contains red, green and blue colors in about the same proportion. Web safe color of #EDDDDB is #FFCCCC (or #FCC).
#EDDDDB color RGB value is (237,221,219).
RGB: (237,221,219) (93%,87%,86%)
R 237 of 255 = 93%
G 221 of 255 = 87%
B 219 of 255 = 86%
R + G + B ~ 89%. #EDDDDB is light color.
R + G + B =
237 + 221 + 219 = 677 (100%)
R 237 of 677 ~ 35.01%
G 221 of 677 ~ 32.64%
B 219 of 677 ~ 32.35%
#EDDDDB color CMYK value is (0,7,8,7).
CMYK: (0,7,8,7) C0M7Y8K7 (0%,7%,8%,7%) (0.00/0.07/0.08/0.07)
ED | DD | DB | |
---|---|---|---|
RGB | 237 | 221 | 219 |
HSL | 7° | 33.33% | 89.41% |
HSB/HSV | 7° | 7.59% | 92.94% |
CMYK | 0.00% | 6.75% | 7.59% |
7.06% |
HEX | ED | DD | DB |
Decimal | 237 | 221 | 219 |
Binary | 11101101 | 11011101 | 11011011 |
Octal | 355 | 335 | 333 |
Examples of css and html codes for elements with #EDDDDB color. Also use rgb(237,221,219) instead hex code.
.myTextColor { color: #EDDDDB; }
<p style="color:#EDDDDB">This sample text font color is #EDDDDB.</p>
This text font color is #EDDDDB.
.myBgColor { background-color: #EDDDDB; }
<div style="background-color:#EDDDDB">Inner text</div>
This div background color is #EDDDDB.
.myBorderColor { border: 1px solid #EDDDDB; }
<div style="border:3px solid #EDDDDB">Div</div>
This div border color is #EDDDDB.
.myOpacity80 { color: #EDDDDB; opacity: 0.8; }
<p style="color:#EDDDDB;opacity:0.8;">80%</p>
Text with #EDDDDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDDDDB;}
<p style="text-shadow: 3px 3px 1px #EDDDDB">Text here.</p>
This text has shadow with #EDDDDB color.
.textShadow {text-shadow: 3px 3px 1px #EDDDDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDDDDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDDDDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDDDDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDDDDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDDDDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDDDDB; -webkit-box-shadow: 1px 1px 3px 2px #EDDDDB; box-shadow: 1px 1px 3px 2px #EDDDDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDDDDB; -webkit-box-shadow: 1px 1px 3px 2px #EDDDDB; box-shadow:1px 1px 3px 2px #EDDDDB;">
Div content here</div>
This text has color #EDDDDB on black background.
This text has color #EDDDDB on white background.
This text has black color on #EDDDDB background.
This text has white color on #EDDDDB background.