HEX: #E4EA9A
RGB: (228,234,154)
#E4EA9A contains mainly red and green colors. Web safe color of #E4EA9A is #CCFF99 (or #CF9).
#E4EA9A color RGB value is (228,234,154).
RGB: (228,234,154) (89%,92%,60%)
R 228 of 255 = 89%
G 234 of 255 = 92%
B 154 of 255 = 60%
R + G + B ~ 80%. #E4EA9A is quite light color.
R + G + B =
228 + 234 + 154 = 616 (100%)
R 228 of 616 ~ 37.01%
G 234 of 616 ~ 37.99%
B 154 of 616 ~ 25%
#E4EA9A color CMYK value is (3,0,34,8).
CMYK: (3,0,34,8) C3M0Y34K8 (3%,0%,34%,8%) (0.03/0.00/0.34/0.08)
E4 | EA | 9A | |
---|---|---|---|
RGB | 228 | 234 | 154 |
HSL | 65° | 65.57% | 76.08% |
HSB/HSV | 65° | 34.19% | 91.76% |
CMYK | 2.56% | 0.00% | 34.19% |
8.24% |
HEX | E4 | EA | 9A |
Decimal | 228 | 234 | 154 |
Binary | 11100100 | 11101010 | 10011010 |
Octal | 344 | 352 | 232 |
Examples of css and html codes for elements with #E4EA9A color. Also use rgb(228,234,154) instead hex code.
.myTextColor { color: #E4EA9A; }
<p style="color:#E4EA9A">This sample text font color is #E4EA9A.</p>
This text font color is #E4EA9A.
.myBgColor { background-color: #E4EA9A; }
<div style="background-color:#E4EA9A">Inner text</div>
This div background color is #E4EA9A.
.myBorderColor { border: 1px solid #E4EA9A; }
<div style="border:3px solid #E4EA9A">Div</div>
This div border color is #E4EA9A.
.myOpacity80 { color: #E4EA9A; opacity: 0.8; }
<p style="color:#E4EA9A;opacity:0.8;">80%</p>
Text with #E4EA9A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E4EA9A;}
<p style="text-shadow: 3px 3px 1px #E4EA9A">Text here.</p>
This text has shadow with #E4EA9A color.
.textShadow {text-shadow: 3px 3px 1px #E4EA9A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E4EA9A, 5px 5px 20px red">Text here.</p>
This text has shadow with #E4EA9A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E4EA9A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E4EA9A, Direction=45, Strength=4)">Text</p>
This text has shadow with #E4EA9A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E4EA9A; -webkit-box-shadow: 1px 1px 3px 2px #E4EA9A; box-shadow: 1px 1px 3px 2px #E4EA9A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E4EA9A; -webkit-box-shadow: 1px 1px 3px 2px #E4EA9A; box-shadow:1px 1px 3px 2px #E4EA9A;">
Div content here</div>
This text has color #E4EA9A on black background.
This text has color #E4EA9A on white background.
This text has black color on #E4EA9A background.
This text has white color on #E4EA9A background.