HEX: #EEDBDB
RGB: (238,219,219)
#EEDBDB contains red, green and blue colors in about the same proportion. Web safe color of #EEDBDB is #FFCCCC (or #FCC).
#EEDBDB color RGB value is (238,219,219).
RGB: (238,219,219) (93%,86%,86%)
R 238 of 255 = 93%
G 219 of 255 = 86%
B 219 of 255 = 86%
R + G + B ~ 88%. #EEDBDB is light color.
R + G + B =
238 + 219 + 219 = 676 (100%)
R 238 of 676 ~ 35.21%
G 219 of 676 ~ 32.4%
B 219 of 676 ~ 32.4%
#EEDBDB color CMYK value is (0,8,8,7).
CMYK: (0,8,8,7) C0M8Y8K7 (0%,8%,8%,7%) (0.00/0.08/0.08/0.07)
EE | DB | DB | |
---|---|---|---|
RGB | 238 | 219 | 219 |
HSL | 0° | 35.85% | 89.61% |
HSB/HSV | 0° | 7.98% | 93.33% |
CMYK | 0.00% | 7.98% | 7.98% |
6.67% |
HEX | EE | DB | DB |
Decimal | 238 | 219 | 219 |
Binary | 11101110 | 11011011 | 11011011 |
Octal | 356 | 333 | 333 |
Examples of css and html codes for elements with #EEDBDB color. Also use rgb(238,219,219) instead hex code.
.myTextColor { color: #EEDBDB; }
<p style="color:#EEDBDB">This sample text font color is #EEDBDB.</p>
This text font color is #EEDBDB.
.myBgColor { background-color: #EEDBDB; }
<div style="background-color:#EEDBDB">Inner text</div>
This div background color is #EEDBDB.
.myBorderColor { border: 1px solid #EEDBDB; }
<div style="border:3px solid #EEDBDB">Div</div>
This div border color is #EEDBDB.
.myOpacity80 { color: #EEDBDB; opacity: 0.8; }
<p style="color:#EEDBDB;opacity:0.8;">80%</p>
Text with #EEDBDB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EEDBDB;}
<p style="text-shadow: 3px 3px 1px #EEDBDB">Text here.</p>
This text has shadow with #EEDBDB color.
.textShadow {text-shadow: 3px 3px 1px #EEDBDB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EEDBDB, 5px 5px 20px red">Text here.</p>
This text has shadow with #EEDBDB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EEDBDB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EEDBDB, Direction=45, Strength=4)">Text</p>
This text has shadow with #EEDBDB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EEDBDB; -webkit-box-shadow: 1px 1px 3px 2px #EEDBDB; box-shadow: 1px 1px 3px 2px #EEDBDB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EEDBDB; -webkit-box-shadow: 1px 1px 3px 2px #EEDBDB; box-shadow:1px 1px 3px 2px #EEDBDB;">
Div content here</div>
This text has color #EEDBDB on black background.
This text has color #EEDBDB on white background.
This text has black color on #EEDBDB background.
This text has white color on #EEDBDB background.