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