HEX: #D5EADD
RGB: (213,234,221)
#D5EADD contains red, green and blue colors in about the same proportion. Web safe color of #D5EADD is #CCFFCC (or #CFC).
#D5EADD color RGB value is (213,234,221).
RGB: (213,234,221) (84%,92%,87%)
R 213 of 255 = 84%
G 234 of 255 = 92%
B 221 of 255 = 87%
R + G + B ~ 88%. #D5EADD is light color.
R + G + B =
213 + 234 + 221 = 668 (100%)
R 213 of 668 ~ 31.89%
G 234 of 668 ~ 35.03%
B 221 of 668 ~ 33.08%
#D5EADD color CMYK value is (9,0,6,8).
CMYK: (9,0,6,8) C9M0Y6K8 (9%,0%,6%,8%) (0.09/0.00/0.06/0.08)
D5 | EA | DD | |
---|---|---|---|
RGB | 213 | 234 | 221 |
HSL | 143° | 33.33% | 87.65% |
HSB/HSV | 143° | 8.97% | 91.76% |
CMYK | 8.97% | 0.00% | 5.56% |
8.24% |
HEX | D5 | EA | DD |
Decimal | 213 | 234 | 221 |
Binary | 11010101 | 11101010 | 11011101 |
Octal | 325 | 352 | 335 |
Examples of css and html codes for elements with #D5EADD color. Also use rgb(213,234,221) instead hex code.
.myTextColor { color: #D5EADD; }
<p style="color:#D5EADD">This sample text font color is #D5EADD.</p>
This text font color is #D5EADD.
.myBgColor { background-color: #D5EADD; }
<div style="background-color:#D5EADD">Inner text</div>
This div background color is #D5EADD.
.myBorderColor { border: 1px solid #D5EADD; }
<div style="border:3px solid #D5EADD">Div</div>
This div border color is #D5EADD.
.myOpacity80 { color: #D5EADD; opacity: 0.8; }
<p style="color:#D5EADD;opacity:0.8;">80%</p>
Text with #D5EADD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5EADD;}
<p style="text-shadow: 3px 3px 1px #D5EADD">Text here.</p>
This text has shadow with #D5EADD color.
.textShadow {text-shadow: 3px 3px 1px #D5EADD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5EADD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5EADD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5EADD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5EADD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5EADD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5EADD; -webkit-box-shadow: 1px 1px 3px 2px #D5EADD; box-shadow: 1px 1px 3px 2px #D5EADD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5EADD; -webkit-box-shadow: 1px 1px 3px 2px #D5EADD; box-shadow:1px 1px 3px 2px #D5EADD;">
Div content here</div>
This text has color #D5EADD on black background.
This text has color #D5EADD on white background.
This text has black color on #D5EADD background.
This text has white color on #D5EADD background.