HEX: #E5E97F
RGB: (229,233,127)
#E5E97F contains mainly red and green colors. Web safe color of #E5E97F is #CCFF66 (or #CF6).
#E5E97F color RGB value is (229,233,127).
RGB: (229,233,127) (90%,91%,50%)
R 229 of 255 = 90%
G 233 of 255 = 91%
B 127 of 255 = 50%
R + G + B ~ 77%. #E5E97F is quite light color.
R + G + B =
229 + 233 + 127 = 589 (100%)
R 229 of 589 ~ 38.88%
G 233 of 589 ~ 39.56%
B 127 of 589 ~ 21.56%
#E5E97F color CMYK value is (2,0,45,9).
CMYK: (2,0,45,9) C2M0Y45K9 (2%,0%,45%,9%) (0.02/0.00/0.45/0.09)
E5 | E9 | 7F | |
---|---|---|---|
RGB | 229 | 233 | 127 |
HSL | 62° | 70.67% | 70.59% |
HSB/HSV | 62° | 45.49% | 91.37% |
CMYK | 1.72% | 0.00% | 45.49% |
8.63% |
HEX | E5 | E9 | 7F |
Decimal | 229 | 233 | 127 |
Binary | 11100101 | 11101001 | 1111111 |
Octal | 345 | 351 | 177 |
Examples of css and html codes for elements with #E5E97F color. Also use rgb(229,233,127) instead hex code.
.myTextColor { color: #E5E97F; }
<p style="color:#E5E97F">This sample text font color is #E5E97F.</p>
This text font color is #E5E97F.
.myBgColor { background-color: #E5E97F; }
<div style="background-color:#E5E97F">Inner text</div>
This div background color is #E5E97F.
.myBorderColor { border: 1px solid #E5E97F; }
<div style="border:3px solid #E5E97F">Div</div>
This div border color is #E5E97F.
.myOpacity80 { color: #E5E97F; opacity: 0.8; }
<p style="color:#E5E97F;opacity:0.8;">80%</p>
Text with #E5E97F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5E97F;}
<p style="text-shadow: 3px 3px 1px #E5E97F">Text here.</p>
This text has shadow with #E5E97F color.
.textShadow {text-shadow: 3px 3px 1px #E5E97F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5E97F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5E97F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5E97F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5E97F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5E97F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5E97F; -webkit-box-shadow: 1px 1px 3px 2px #E5E97F; box-shadow: 1px 1px 3px 2px #E5E97F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5E97F; -webkit-box-shadow: 1px 1px 3px 2px #E5E97F; box-shadow:1px 1px 3px 2px #E5E97F;">
Div content here</div>
This text has color #E5E97F on black background.
This text has color #E5E97F on white background.
This text has black color on #E5E97F background.
This text has white color on #E5E97F background.