HEX: #D7EBDE
RGB: (215,235,222)
#D7EBDE contains red, green and blue colors in about the same proportion. Web safe color of #D7EBDE is #CCFFCC (or #CFC).
#D7EBDE color RGB value is (215,235,222).
RGB: (215,235,222) (84%,92%,87%)
R 215 of 255 = 84%
G 235 of 255 = 92%
B 222 of 255 = 87%
R + G + B ~ 88%. #D7EBDE is light color.
R + G + B =
215 + 235 + 222 = 672 (100%)
R 215 of 672 ~ 31.99%
G 235 of 672 ~ 34.97%
B 222 of 672 ~ 33.04%
#D7EBDE 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)
D7 | EB | DE | |
---|---|---|---|
RGB | 215 | 235 | 222 |
HSL | 141° | 33.33% | 88.24% |
HSB/HSV | 141° | 8.51% | 92.16% |
CMYK | 8.51% | 0.00% | 5.53% |
7.84% |
HEX | D7 | EB | DE |
Decimal | 215 | 235 | 222 |
Binary | 11010111 | 11101011 | 11011110 |
Octal | 327 | 353 | 336 |
Examples of css and html codes for elements with #D7EBDE color. Also use rgb(215,235,222) instead hex code.
.myTextColor { color: #D7EBDE; }
<p style="color:#D7EBDE">This sample text font color is #D7EBDE.</p>
This text font color is #D7EBDE.
.myBgColor { background-color: #D7EBDE; }
<div style="background-color:#D7EBDE">Inner text</div>
This div background color is #D7EBDE.
.myBorderColor { border: 1px solid #D7EBDE; }
<div style="border:3px solid #D7EBDE">Div</div>
This div border color is #D7EBDE.
.myOpacity80 { color: #D7EBDE; opacity: 0.8; }
<p style="color:#D7EBDE;opacity:0.8;">80%</p>
Text with #D7EBDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7EBDE;}
<p style="text-shadow: 3px 3px 1px #D7EBDE">Text here.</p>
This text has shadow with #D7EBDE color.
.textShadow {text-shadow: 3px 3px 1px #D7EBDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7EBDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7EBDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7EBDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7EBDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7EBDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7EBDE; -webkit-box-shadow: 1px 1px 3px 2px #D7EBDE; box-shadow: 1px 1px 3px 2px #D7EBDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7EBDE; -webkit-box-shadow: 1px 1px 3px 2px #D7EBDE; box-shadow:1px 1px 3px 2px #D7EBDE;">
Div content here</div>
This text has color #D7EBDE on black background.
This text has color #D7EBDE on white background.
This text has black color on #D7EBDE background.
This text has white color on #D7EBDE background.