HEX: #E6F6DD
RGB: (230,246,221)
#E6F6DD contains red, green and blue colors in about the same proportion. Web safe color of #E6F6DD is #CCFFCC (or #CFC).
#E6F6DD color RGB value is (230,246,221).
RGB: (230,246,221) (90%,96%,87%)
R 230 of 255 = 90%
G 246 of 255 = 96%
B 221 of 255 = 87%
R + G + B ~ 91%. #E6F6DD is light color.
R + G + B =
230 + 246 + 221 = 697 (100%)
R 230 of 697 ~ 33%
G 246 of 697 ~ 35.29%
B 221 of 697 ~ 31.71%
#E6F6DD color CMYK value is (7,0,10,4).
CMYK: (7,0,10,4) C7M0Y10K4 (7%,0%,10%,4%) (0.07/0.00/0.10/0.04)
E6 | F6 | DD | |
---|---|---|---|
RGB | 230 | 246 | 221 |
HSL | 98° | 58.14% | 91.57% |
HSB/HSV | 98° | 10.16% | 96.47% |
CMYK | 6.50% | 0.00% | 10.16% |
3.53% |
HEX | E6 | F6 | DD |
Decimal | 230 | 246 | 221 |
Binary | 11100110 | 11110110 | 11011101 |
Octal | 346 | 366 | 335 |
Examples of css and html codes for elements with #E6F6DD color. Also use rgb(230,246,221) instead hex code.
.myTextColor { color: #E6F6DD; }
<p style="color:#E6F6DD">This sample text font color is #E6F6DD.</p>
This text font color is #E6F6DD.
.myBgColor { background-color: #E6F6DD; }
<div style="background-color:#E6F6DD">Inner text</div>
This div background color is #E6F6DD.
.myBorderColor { border: 1px solid #E6F6DD; }
<div style="border:3px solid #E6F6DD">Div</div>
This div border color is #E6F6DD.
.myOpacity80 { color: #E6F6DD; opacity: 0.8; }
<p style="color:#E6F6DD;opacity:0.8;">80%</p>
Text with #E6F6DD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E6F6DD;}
<p style="text-shadow: 3px 3px 1px #E6F6DD">Text here.</p>
This text has shadow with #E6F6DD color.
.textShadow {text-shadow: 3px 3px 1px #E6F6DD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E6F6DD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E6F6DD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E6F6DD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E6F6DD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E6F6DD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E6F6DD; -webkit-box-shadow: 1px 1px 3px 2px #E6F6DD; box-shadow: 1px 1px 3px 2px #E6F6DD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E6F6DD; -webkit-box-shadow: 1px 1px 3px 2px #E6F6DD; box-shadow:1px 1px 3px 2px #E6F6DD;">
Div content here</div>
This text has color #E6F6DD on black background.
This text has color #E6F6DD on white background.
This text has black color on #E6F6DD background.
This text has white color on #E6F6DD background.