HEX: #D7E996
RGB: (215,233,150)
#D7E996 contains mainly red and green colors. Web safe color of #D7E996 is #CCFF99 (or #CF9).
#D7E996 color RGB value is (215,233,150).
RGB: (215,233,150) (84%,91%,59%)
R 215 of 255 = 84%
G 233 of 255 = 91%
B 150 of 255 = 59%
R + G + B ~ 78%. #D7E996 is quite light color.
R + G + B =
215 + 233 + 150 = 598 (100%)
R 215 of 598 ~ 35.95%
G 233 of 598 ~ 38.96%
B 150 of 598 ~ 25.08%
#D7E996 color CMYK value is (8,0,36,9).
CMYK: (8,0,36,9) C8M0Y36K9 (8%,0%,36%,9%) (0.08/0.00/0.36/0.09)
D7 | E9 | 96 | |
---|---|---|---|
RGB | 215 | 233 | 150 |
HSL | 73° | 65.35% | 75.10% |
HSB/HSV | 73° | 35.62% | 91.37% |
CMYK | 7.73% | 0.00% | 35.62% |
8.63% |
HEX | D7 | E9 | 96 |
Decimal | 215 | 233 | 150 |
Binary | 11010111 | 11101001 | 10010110 |
Octal | 327 | 351 | 226 |
Examples of css and html codes for elements with #D7E996 color. Also use rgb(215,233,150) instead hex code.
.myTextColor { color: #D7E996; }
<p style="color:#D7E996">This sample text font color is #D7E996.</p>
This text font color is #D7E996.
.myBgColor { background-color: #D7E996; }
<div style="background-color:#D7E996">Inner text</div>
This div background color is #D7E996.
.myBorderColor { border: 1px solid #D7E996; }
<div style="border:3px solid #D7E996">Div</div>
This div border color is #D7E996.
.myOpacity80 { color: #D7E996; opacity: 0.8; }
<p style="color:#D7E996;opacity:0.8;">80%</p>
Text with #D7E996 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D7E996;}
<p style="text-shadow: 3px 3px 1px #D7E996">Text here.</p>
This text has shadow with #D7E996 color.
.textShadow {text-shadow: 3px 3px 1px #D7E996, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D7E996, 5px 5px 20px red">Text here.</p>
This text has shadow with #D7E996 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D7E996, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D7E996, Direction=45, Strength=4)">Text</p>
This text has shadow with #D7E996 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D7E996; -webkit-box-shadow: 1px 1px 3px 2px #D7E996; box-shadow: 1px 1px 3px 2px #D7E996; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D7E996; -webkit-box-shadow: 1px 1px 3px 2px #D7E996; box-shadow:1px 1px 3px 2px #D7E996;">
Div content here</div>
This text has color #D7E996 on black background.
This text has color #D7E996 on white background.
This text has black color on #D7E996 background.
This text has white color on #D7E996 background.