HEX: #E0F6BD
RGB: (224,246,189)
#E0F6BD contains red, green and blue colors in about the same proportion. Web safe color of #E0F6BD is #CCFFCC (or #CFC).
#E0F6BD color RGB value is (224,246,189).
RGB: (224,246,189) (88%,96%,74%)
R 224 of 255 = 88%
G 246 of 255 = 96%
B 189 of 255 = 74%
R + G + B ~ 86%. #E0F6BD is light color.
R + G + B =
224 + 246 + 189 = 659 (100%)
R 224 of 659 ~ 33.99%
G 246 of 659 ~ 37.33%
B 189 of 659 ~ 28.68%
#E0F6BD color CMYK value is (9,0,23,4).
CMYK: (9,0,23,4) C9M0Y23K4 (9%,0%,23%,4%) (0.09/0.00/0.23/0.04)
E0 | F6 | BD | |
---|---|---|---|
RGB | 224 | 246 | 189 |
HSL | 83° | 76.00% | 85.29% |
HSB/HSV | 83° | 23.17% | 96.47% |
CMYK | 8.94% | 0.00% | 23.17% |
3.53% |
HEX | E0 | F6 | BD |
Decimal | 224 | 246 | 189 |
Binary | 11100000 | 11110110 | 10111101 |
Octal | 340 | 366 | 275 |
Examples of css and html codes for elements with #E0F6BD color. Also use rgb(224,246,189) instead hex code.
.myTextColor { color: #E0F6BD; }
<p style="color:#E0F6BD">This sample text font color is #E0F6BD.</p>
This text font color is #E0F6BD.
.myBgColor { background-color: #E0F6BD; }
<div style="background-color:#E0F6BD">Inner text</div>
This div background color is #E0F6BD.
.myBorderColor { border: 1px solid #E0F6BD; }
<div style="border:3px solid #E0F6BD">Div</div>
This div border color is #E0F6BD.
.myOpacity80 { color: #E0F6BD; opacity: 0.8; }
<p style="color:#E0F6BD;opacity:0.8;">80%</p>
Text with #E0F6BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0F6BD;}
<p style="text-shadow: 3px 3px 1px #E0F6BD">Text here.</p>
This text has shadow with #E0F6BD color.
.textShadow {text-shadow: 3px 3px 1px #E0F6BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0F6BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0F6BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0F6BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0F6BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0F6BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0F6BD; -webkit-box-shadow: 1px 1px 3px 2px #E0F6BD; box-shadow: 1px 1px 3px 2px #E0F6BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0F6BD; -webkit-box-shadow: 1px 1px 3px 2px #E0F6BD; box-shadow:1px 1px 3px 2px #E0F6BD;">
Div content here</div>
This text has color #E0F6BD on black background.
This text has color #E0F6BD on white background.
This text has black color on #E0F6BD background.
This text has white color on #E0F6BD background.