HEX: #D6EDAF
RGB: (214,237,175)
#D6EDAF contains mainly red and green colors. Web safe color of #D6EDAF is #CCFF99 (or #CF9).
#D6EDAF color RGB value is (214,237,175).
RGB: (214,237,175) (84%,93%,69%)
R 214 of 255 = 84%
G 237 of 255 = 93%
B 175 of 255 = 69%
R + G + B ~ 82%. #D6EDAF is quite light color.
R + G + B =
214 + 237 + 175 = 626 (100%)
R 214 of 626 ~ 34.19%
G 237 of 626 ~ 37.86%
B 175 of 626 ~ 27.96%
#D6EDAF color CMYK value is (10,0,26,7).
CMYK: (10,0,26,7) C10M0Y26K7 (10%,0%,26%,7%) (0.10/0.00/0.26/0.07)
D6 | ED | AF | |
---|---|---|---|
RGB | 214 | 237 | 175 |
HSL | 82° | 63.27% | 80.78% |
HSB/HSV | 82° | 26.16% | 92.94% |
CMYK | 9.70% | 0.00% | 26.16% |
7.06% |
HEX | D6 | ED | AF |
Decimal | 214 | 237 | 175 |
Binary | 11010110 | 11101101 | 10101111 |
Octal | 326 | 355 | 257 |
Examples of css and html codes for elements with #D6EDAF color. Also use rgb(214,237,175) instead hex code.
.myTextColor { color: #D6EDAF; }
<p style="color:#D6EDAF">This sample text font color is #D6EDAF.</p>
This text font color is #D6EDAF.
.myBgColor { background-color: #D6EDAF; }
<div style="background-color:#D6EDAF">Inner text</div>
This div background color is #D6EDAF.
.myBorderColor { border: 1px solid #D6EDAF; }
<div style="border:3px solid #D6EDAF">Div</div>
This div border color is #D6EDAF.
.myOpacity80 { color: #D6EDAF; opacity: 0.8; }
<p style="color:#D6EDAF;opacity:0.8;">80%</p>
Text with #D6EDAF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D6EDAF;}
<p style="text-shadow: 3px 3px 1px #D6EDAF">Text here.</p>
This text has shadow with #D6EDAF color.
.textShadow {text-shadow: 3px 3px 1px #D6EDAF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D6EDAF, 5px 5px 20px red">Text here.</p>
This text has shadow with #D6EDAF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D6EDAF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D6EDAF, Direction=45, Strength=4)">Text</p>
This text has shadow with #D6EDAF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D6EDAF; -webkit-box-shadow: 1px 1px 3px 2px #D6EDAF; box-shadow: 1px 1px 3px 2px #D6EDAF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D6EDAF; -webkit-box-shadow: 1px 1px 3px 2px #D6EDAF; box-shadow:1px 1px 3px 2px #D6EDAF;">
Div content here</div>
This text has color #D6EDAF on black background.
This text has color #D6EDAF on white background.
This text has black color on #D6EDAF background.
This text has white color on #D6EDAF background.