HEX: #E5EE9C
RGB: (229,238,156)
#E5EE9C contains mainly red and green colors. Web safe color of #E5EE9C is #CCFF99 (or #CF9).
#E5EE9C color RGB value is (229,238,156).
RGB: (229,238,156) (90%,93%,61%)
R 229 of 255 = 90%
G 238 of 255 = 93%
B 156 of 255 = 61%
R + G + B ~ 81%. #E5EE9C is quite light color.
R + G + B =
229 + 238 + 156 = 623 (100%)
R 229 of 623 ~ 36.76%
G 238 of 623 ~ 38.2%
B 156 of 623 ~ 25.04%
#E5EE9C color CMYK value is (4,0,34,7).
CMYK: (4,0,34,7) C4M0Y34K7 (4%,0%,34%,7%) (0.04/0.00/0.34/0.07)
E5 | EE | 9C | |
---|---|---|---|
RGB | 229 | 238 | 156 |
HSL | 67° | 70.69% | 77.25% |
HSB/HSV | 67° | 34.45% | 93.33% |
CMYK | 3.78% | 0.00% | 34.45% |
6.67% |
HEX | E5 | EE | 9C |
Decimal | 229 | 238 | 156 |
Binary | 11100101 | 11101110 | 10011100 |
Octal | 345 | 356 | 234 |
Examples of css and html codes for elements with #E5EE9C color. Also use rgb(229,238,156) instead hex code.
.myTextColor { color: #E5EE9C; }
<p style="color:#E5EE9C">This sample text font color is #E5EE9C.</p>
This text font color is #E5EE9C.
.myBgColor { background-color: #E5EE9C; }
<div style="background-color:#E5EE9C">Inner text</div>
This div background color is #E5EE9C.
.myBorderColor { border: 1px solid #E5EE9C; }
<div style="border:3px solid #E5EE9C">Div</div>
This div border color is #E5EE9C.
.myOpacity80 { color: #E5EE9C; opacity: 0.8; }
<p style="color:#E5EE9C;opacity:0.8;">80%</p>
Text with #E5EE9C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5EE9C;}
<p style="text-shadow: 3px 3px 1px #E5EE9C">Text here.</p>
This text has shadow with #E5EE9C color.
.textShadow {text-shadow: 3px 3px 1px #E5EE9C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5EE9C, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5EE9C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5EE9C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5EE9C, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5EE9C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5EE9C; -webkit-box-shadow: 1px 1px 3px 2px #E5EE9C; box-shadow: 1px 1px 3px 2px #E5EE9C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5EE9C; -webkit-box-shadow: 1px 1px 3px 2px #E5EE9C; box-shadow:1px 1px 3px 2px #E5EE9C;">
Div content here</div>
This text has color #E5EE9C on black background.
This text has color #E5EE9C on white background.
This text has black color on #E5EE9C background.
This text has white color on #E5EE9C background.