HEX: #D7EDDD
RGB: (215,237,221)
#D7EDDD contains red, green and blue colors in about the same proportion. Web safe color of #D7EDDD is #CCFFCC (or #CFC).
#D7EDDD color RGB value is (215,237,221).
RGB: (215,237,221) (84%,93%,87%)
R 215 of 255 = 84%
G 237 of 255 = 93%
B 221 of 255 = 87%
R + G + B ~ 88%. #D7EDDD is light color.
R + G + B =
215 + 237 + 221 = 673 (100%)
R 215 of 673 ~ 31.95%
G 237 of 673 ~ 35.22%
B 221 of 673 ~ 32.84%
#D7EDDD color CMYK value is (9,0,7,7).
CMYK: (9,0,7,7) C9M0Y7K7 (9%,0%,7%,7%) (0.09/0.00/0.07/0.07)
D7 | ED | DD | |
---|---|---|---|
RGB | 215 | 237 | 221 |
HSL | 136° | 37.93% | 88.63% |
HSB/HSV | 136° | 9.28% | 92.94% |
CMYK | 9.28% | 0.00% | 6.75% |
7.06% |
HEX | D7 | ED | DD |
Decimal | 215 | 237 | 221 |
Binary | 11010111 | 11101101 | 11011101 |
Octal | 327 | 355 | 335 |
Examples of css and html codes for elements with #D7EDDD color. Also use rgb(215,237,221) instead hex code.
.myTextColor { color: #D7EDDD; }
<p style="color:#D7EDDD">This sample text font color is #D7EDDD.</p>
This text font color is #D7EDDD.
.myBgColor { background-color: #D7EDDD; }
<div style="background-color:#D7EDDD">Inner text</div>
This div background color is #D7EDDD.
.myBorderColor { border: 1px solid #D7EDDD; }
<div style="border:3px solid #D7EDDD">Div</div>
This div border color is #D7EDDD.
.myOpacity80 { color: #D7EDDD; opacity: 0.8; }
<p style="color:#D7EDDD;opacity:0.8;">80%</p>
Text with #D7EDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7EDDD;}
<p style="text-shadow: 3px 3px 1px #D7EDDD">Text here.</p>
This text has shadow with #D7EDDD color.
.textShadow {text-shadow: 3px 3px 1px #D7EDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7EDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7EDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7EDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7EDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7EDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7EDDD; -webkit-box-shadow: 1px 1px 3px 2px #D7EDDD; box-shadow: 1px 1px 3px 2px #D7EDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7EDDD; -webkit-box-shadow: 1px 1px 3px 2px #D7EDDD; box-shadow:1px 1px 3px 2px #D7EDDD;">
Div content here</div>
This text has color #D7EDDD on black background.
This text has color #D7EDDD on white background.
This text has black color on #D7EDDD background.
This text has white color on #D7EDDD background.