HEX: #E0E59B
RGB: (224,229,155)
#E0E59B contains mainly red and green colors. Web safe color of #E0E59B is #CCCC99 (or #CC9).
#E0E59B color RGB value is (224,229,155).
RGB: (224,229,155) (88%,90%,61%)
R 224 of 255 = 88%
G 229 of 255 = 90%
B 155 of 255 = 61%
R + G + B ~ 80%. #E0E59B is quite light color.
R + G + B =
224 + 229 + 155 = 608 (100%)
R 224 of 608 ~ 36.84%
G 229 of 608 ~ 37.66%
B 155 of 608 ~ 25.49%
#E0E59B color CMYK value is (2,0,32,10).
CMYK: (2,0,32,10) C2M0Y32K10 (2%,0%,32%,10%) (0.02/0.00/0.32/0.10)
E0 | E5 | 9B | |
---|---|---|---|
RGB | 224 | 229 | 155 |
HSL | 64° | 58.73% | 75.29% |
HSB/HSV | 64° | 32.31% | 89.80% |
CMYK | 2.18% | 0.00% | 32.31% |
10.20% |
HEX | E0 | E5 | 9B |
Decimal | 224 | 229 | 155 |
Binary | 11100000 | 11100101 | 10011011 |
Octal | 340 | 345 | 233 |
Examples of css and html codes for elements with #E0E59B color. Also use rgb(224,229,155) instead hex code.
.myTextColor { color: #E0E59B; }
<p style="color:#E0E59B">This sample text font color is #E0E59B.</p>
This text font color is #E0E59B.
.myBgColor { background-color: #E0E59B; }
<div style="background-color:#E0E59B">Inner text</div>
This div background color is #E0E59B.
.myBorderColor { border: 1px solid #E0E59B; }
<div style="border:3px solid #E0E59B">Div</div>
This div border color is #E0E59B.
.myOpacity80 { color: #E0E59B; opacity: 0.8; }
<p style="color:#E0E59B;opacity:0.8;">80%</p>
Text with #E0E59B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E0E59B;}
<p style="text-shadow: 3px 3px 1px #E0E59B">Text here.</p>
This text has shadow with #E0E59B color.
.textShadow {text-shadow: 3px 3px 1px #E0E59B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E0E59B, 5px 5px 20px red">Text here.</p>
This text has shadow with #E0E59B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E0E59B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E0E59B, Direction=45, Strength=4)">Text</p>
This text has shadow with #E0E59B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E0E59B; -webkit-box-shadow: 1px 1px 3px 2px #E0E59B; box-shadow: 1px 1px 3px 2px #E0E59B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E0E59B; -webkit-box-shadow: 1px 1px 3px 2px #E0E59B; box-shadow:1px 1px 3px 2px #E0E59B;">
Div content here</div>
This text has color #E0E59B on black background.
This text has color #E0E59B on white background.
This text has black color on #E0E59B background.
This text has white color on #E0E59B background.