HEX: #D5EBEE
RGB: (213,235,238)
#D5EBEE contains red, green and blue colors in about the same proportion. Web safe color of #D5EBEE is #CCFFFF (or #CFF).
#D5EBEE color RGB value is (213,235,238).
RGB: (213,235,238) (84%,92%,93%)
R 213 of 255 = 84%
G 235 of 255 = 92%
B 238 of 255 = 93%
R + G + B ~ 90%. #D5EBEE is light color.
R + G + B =
213 + 235 + 238 = 686 (100%)
R 213 of 686 ~ 31.05%
G 235 of 686 ~ 34.26%
B 238 of 686 ~ 34.69%
#D5EBEE color CMYK value is (11,1,0,7).
CMYK: (11,1,0,7) C11M1Y0K7 (11%,1%,0%,7%) (0.11/0.01/0.00/0.07)
D5 | EB | EE | |
---|---|---|---|
RGB | 213 | 235 | 238 |
HSL | 187° | 42.37% | 88.43% |
HSB/HSV | 187° | 10.50% | 93.33% |
CMYK | 10.50% | 1.26% | 0.00% |
6.67% |
HEX | D5 | EB | EE |
Decimal | 213 | 235 | 238 |
Binary | 11010101 | 11101011 | 11101110 |
Octal | 325 | 353 | 356 |
Examples of css and html codes for elements with #D5EBEE color. Also use rgb(213,235,238) instead hex code.
.myTextColor { color: #D5EBEE; }
<p style="color:#D5EBEE">This sample text font color is #D5EBEE.</p>
This text font color is #D5EBEE.
.myBgColor { background-color: #D5EBEE; }
<div style="background-color:#D5EBEE">Inner text</div>
This div background color is #D5EBEE.
.myBorderColor { border: 1px solid #D5EBEE; }
<div style="border:3px solid #D5EBEE">Div</div>
This div border color is #D5EBEE.
.myOpacity80 { color: #D5EBEE; opacity: 0.8; }
<p style="color:#D5EBEE;opacity:0.8;">80%</p>
Text with #D5EBEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D5EBEE;}
<p style="text-shadow: 3px 3px 1px #D5EBEE">Text here.</p>
This text has shadow with #D5EBEE color.
.textShadow {text-shadow: 3px 3px 1px #D5EBEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D5EBEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D5EBEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D5EBEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D5EBEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D5EBEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D5EBEE; -webkit-box-shadow: 1px 1px 3px 2px #D5EBEE; box-shadow: 1px 1px 3px 2px #D5EBEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D5EBEE; -webkit-box-shadow: 1px 1px 3px 2px #D5EBEE; box-shadow:1px 1px 3px 2px #D5EBEE;">
Div content here</div>
This text has color #D5EBEE on black background.
This text has color #D5EBEE on white background.
This text has black color on #D5EBEE background.
This text has white color on #D5EBEE background.