HEX: #D5EBDF
RGB: (213,235,223)
#D5EBDF contains red, green and blue colors in about the same proportion. Web safe color of #D5EBDF is #CCFFCC (or #CFC).
#D5EBDF color RGB value is (213,235,223).
RGB: (213,235,223) (84%,92%,87%)
R 213 of 255 = 84%
G 235 of 255 = 92%
B 223 of 255 = 87%
R + G + B ~ 88%. #D5EBDF is light color.
R + G + B =
213 + 235 + 223 = 671 (100%)
R 213 of 671 ~ 31.74%
G 235 of 671 ~ 35.02%
B 223 of 671 ~ 33.23%
#D5EBDF color CMYK value is (9,0,5,8).
CMYK: (9,0,5,8) C9M0Y5K8 (9%,0%,5%,8%) (0.09/0.00/0.05/0.08)
D5 | EB | DF | |
---|---|---|---|
RGB | 213 | 235 | 223 |
HSL | 147° | 35.48% | 87.84% |
HSB/HSV | 147° | 9.36% | 92.16% |
CMYK | 9.36% | 0.00% | 5.11% |
7.84% |
HEX | D5 | EB | DF |
Decimal | 213 | 235 | 223 |
Binary | 11010101 | 11101011 | 11011111 |
Octal | 325 | 353 | 337 |
Examples of css and html codes for elements with #D5EBDF color. Also use rgb(213,235,223) instead hex code.
.myTextColor { color: #D5EBDF; }
<p style="color:#D5EBDF">This sample text font color is #D5EBDF.</p>
This text font color is #D5EBDF.
.myBgColor { background-color: #D5EBDF; }
<div style="background-color:#D5EBDF">Inner text</div>
This div background color is #D5EBDF.
.myBorderColor { border: 1px solid #D5EBDF; }
<div style="border:3px solid #D5EBDF">Div</div>
This div border color is #D5EBDF.
.myOpacity80 { color: #D5EBDF; opacity: 0.8; }
<p style="color:#D5EBDF;opacity:0.8;">80%</p>
Text with #D5EBDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5EBDF;}
<p style="text-shadow: 3px 3px 1px #D5EBDF">Text here.</p>
This text has shadow with #D5EBDF color.
.textShadow {text-shadow: 3px 3px 1px #D5EBDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5EBDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5EBDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5EBDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5EBDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5EBDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5EBDF; -webkit-box-shadow: 1px 1px 3px 2px #D5EBDF; box-shadow: 1px 1px 3px 2px #D5EBDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5EBDF; -webkit-box-shadow: 1px 1px 3px 2px #D5EBDF; box-shadow:1px 1px 3px 2px #D5EBDF;">
Div content here</div>
This text has color #D5EBDF on black background.
This text has color #D5EBDF on white background.
This text has black color on #D5EBDF background.
This text has white color on #D5EBDF background.