HEX: #D7EEBD
RGB: (215,238,189)
#D7EEBD contains red, green and blue colors in about the same proportion. Web safe color of #D7EEBD is #CCFFCC (or #CFC).
#D7EEBD color RGB value is (215,238,189).
RGB: (215,238,189) (84%,93%,74%)
R 215 of 255 = 84%
G 238 of 255 = 93%
B 189 of 255 = 74%
R + G + B ~ 84%. #D7EEBD is quite light color.
R + G + B =
215 + 238 + 189 = 642 (100%)
R 215 of 642 ~ 33.49%
G 238 of 642 ~ 37.07%
B 189 of 642 ~ 29.44%
#D7EEBD color CMYK value is (10,0,21,7).
CMYK: (10,0,21,7) C10M0Y21K7 (10%,0%,21%,7%) (0.10/0.00/0.21/0.07)
D7 | EE | BD | |
---|---|---|---|
RGB | 215 | 238 | 189 |
HSL | 88° | 59.04% | 83.73% |
HSB/HSV | 88° | 20.59% | 93.33% |
CMYK | 9.66% | 0.00% | 20.59% |
6.67% |
HEX | D7 | EE | BD |
Decimal | 215 | 238 | 189 |
Binary | 11010111 | 11101110 | 10111101 |
Octal | 327 | 356 | 275 |
Examples of css and html codes for elements with #D7EEBD color. Also use rgb(215,238,189) instead hex code.
.myTextColor { color: #D7EEBD; }
<p style="color:#D7EEBD">This sample text font color is #D7EEBD.</p>
This text font color is #D7EEBD.
.myBgColor { background-color: #D7EEBD; }
<div style="background-color:#D7EEBD">Inner text</div>
This div background color is #D7EEBD.
.myBorderColor { border: 1px solid #D7EEBD; }
<div style="border:3px solid #D7EEBD">Div</div>
This div border color is #D7EEBD.
.myOpacity80 { color: #D7EEBD; opacity: 0.8; }
<p style="color:#D7EEBD;opacity:0.8;">80%</p>
Text with #D7EEBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7EEBD;}
<p style="text-shadow: 3px 3px 1px #D7EEBD">Text here.</p>
This text has shadow with #D7EEBD color.
.textShadow {text-shadow: 3px 3px 1px #D7EEBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7EEBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7EEBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7EEBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7EEBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7EEBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7EEBD; -webkit-box-shadow: 1px 1px 3px 2px #D7EEBD; box-shadow: 1px 1px 3px 2px #D7EEBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7EEBD; -webkit-box-shadow: 1px 1px 3px 2px #D7EEBD; box-shadow:1px 1px 3px 2px #D7EEBD;">
Div content here</div>
This text has color #D7EEBD on black background.
This text has color #D7EEBD on white background.
This text has black color on #D7EEBD background.
This text has white color on #D7EEBD background.