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