HEX: #D7E3EC
RGB: (215,227,236)
#D7E3EC contains red, green and blue colors in about the same proportion. Web safe color of #D7E3EC is #CCCCFF (or #CCF).
#D7E3EC color RGB value is (215,227,236).
RGB: (215,227,236) (84%,89%,93%)
R 215 of 255 = 84%
G 227 of 255 = 89%
B 236 of 255 = 93%
R + G + B ~ 89%. #D7E3EC is light color.
R + G + B =
215 + 227 + 236 = 678 (100%)
R 215 of 678 ~ 31.71%
G 227 of 678 ~ 33.48%
B 236 of 678 ~ 34.81%
#D7E3EC color CMYK value is (9,4,0,7).
CMYK: (9,4,0,7) C9M4Y0K7 (9%,4%,0%,7%) (0.09/0.04/0.00/0.07)
D7 | E3 | EC | |
---|---|---|---|
RGB | 215 | 227 | 236 |
HSL | 206° | 35.59% | 88.43% |
HSB/HSV | 206° | 8.90% | 92.55% |
CMYK | 8.90% | 3.81% | 0.00% |
7.45% |
HEX | D7 | E3 | EC |
Decimal | 215 | 227 | 236 |
Binary | 11010111 | 11100011 | 11101100 |
Octal | 327 | 343 | 354 |
Examples of css and html codes for elements with #D7E3EC color. Also use rgb(215,227,236) instead hex code.
.myTextColor { color: #D7E3EC; }
<p style="color:#D7E3EC">This sample text font color is #D7E3EC.</p>
This text font color is #D7E3EC.
.myBgColor { background-color: #D7E3EC; }
<div style="background-color:#D7E3EC">Inner text</div>
This div background color is #D7E3EC.
.myBorderColor { border: 1px solid #D7E3EC; }
<div style="border:3px solid #D7E3EC">Div</div>
This div border color is #D7E3EC.
.myOpacity80 { color: #D7E3EC; opacity: 0.8; }
<p style="color:#D7E3EC;opacity:0.8;">80%</p>
Text with #D7E3EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7E3EC;}
<p style="text-shadow: 3px 3px 1px #D7E3EC">Text here.</p>
This text has shadow with #D7E3EC color.
.textShadow {text-shadow: 3px 3px 1px #D7E3EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7E3EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7E3EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7E3EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7E3EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7E3EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7E3EC; -webkit-box-shadow: 1px 1px 3px 2px #D7E3EC; box-shadow: 1px 1px 3px 2px #D7E3EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7E3EC; -webkit-box-shadow: 1px 1px 3px 2px #D7E3EC; box-shadow:1px 1px 3px 2px #D7E3EC;">
Div content here</div>
This text has color #D7E3EC on black background.
This text has color #D7E3EC on white background.
This text has black color on #D7E3EC background.
This text has white color on #D7E3EC background.