HEX: #D9E6BE
RGB: (217,230,190)
#D9E6BE contains red, green and blue colors in about the same proportion. Web safe color of #D9E6BE is #CCCCCC (or #CCC).
#D9E6BE color RGB value is (217,230,190).
RGB: (217,230,190) (85%,90%,75%)
R 217 of 255 = 85%
G 230 of 255 = 90%
B 190 of 255 = 75%
R + G + B ~ 83%. #D9E6BE is quite light color.
R + G + B =
217 + 230 + 190 = 637 (100%)
R 217 of 637 ~ 34.07%
G 230 of 637 ~ 36.11%
B 190 of 637 ~ 29.83%
#D9E6BE color CMYK value is (6,0,17,10).
CMYK: (6,0,17,10) C6M0Y17K10 (6%,0%,17%,10%) (0.06/0.00/0.17/0.10)
D9 | E6 | BE | |
---|---|---|---|
RGB | 217 | 230 | 190 |
HSL | 80° | 44.44% | 82.35% |
HSB/HSV | 80° | 17.39% | 90.20% |
CMYK | 5.65% | 0.00% | 17.39% |
9.80% |
HEX | D9 | E6 | BE |
Decimal | 217 | 230 | 190 |
Binary | 11011001 | 11100110 | 10111110 |
Octal | 331 | 346 | 276 |
Examples of css and html codes for elements with #D9E6BE color. Also use rgb(217,230,190) instead hex code.
.myTextColor { color: #D9E6BE; }
<p style="color:#D9E6BE">This sample text font color is #D9E6BE.</p>
This text font color is #D9E6BE.
.myBgColor { background-color: #D9E6BE; }
<div style="background-color:#D9E6BE">Inner text</div>
This div background color is #D9E6BE.
.myBorderColor { border: 1px solid #D9E6BE; }
<div style="border:3px solid #D9E6BE">Div</div>
This div border color is #D9E6BE.
.myOpacity80 { color: #D9E6BE; opacity: 0.8; }
<p style="color:#D9E6BE;opacity:0.8;">80%</p>
Text with #D9E6BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D9E6BE;}
<p style="text-shadow: 3px 3px 1px #D9E6BE">Text here.</p>
This text has shadow with #D9E6BE color.
.textShadow {text-shadow: 3px 3px 1px #D9E6BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D9E6BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #D9E6BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D9E6BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D9E6BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #D9E6BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D9E6BE; -webkit-box-shadow: 1px 1px 3px 2px #D9E6BE; box-shadow: 1px 1px 3px 2px #D9E6BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D9E6BE; -webkit-box-shadow: 1px 1px 3px 2px #D9E6BE; box-shadow:1px 1px 3px 2px #D9E6BE;">
Div content here</div>
This text has color #D9E6BE on black background.
This text has color #D9E6BE on white background.
This text has black color on #D9E6BE background.
This text has white color on #D9E6BE background.