HEX: #E5F58F
RGB: (229,245,143)
#E5F58F contains mainly red and green colors. Web safe color of #E5F58F is #CCFF99 (or #CF9).
#E5F58F color RGB value is (229,245,143).
RGB: (229,245,143) (90%,96%,56%)
R 229 of 255 = 90%
G 245 of 255 = 96%
B 143 of 255 = 56%
R + G + B ~ 81%. #E5F58F is quite light color.
R + G + B =
229 + 245 + 143 = 617 (100%)
R 229 of 617 ~ 37.12%
G 245 of 617 ~ 39.71%
B 143 of 617 ~ 23.18%
#E5F58F color CMYK value is (7,0,42,4).
CMYK: (7,0,42,4) C7M0Y42K4 (7%,0%,42%,4%) (0.07/0.00/0.42/0.04)
E5 | F5 | 8F | |
---|---|---|---|
RGB | 229 | 245 | 143 |
HSL | 69° | 83.61% | 76.08% |
HSB/HSV | 69° | 41.63% | 96.08% |
CMYK | 6.53% | 0.00% | 41.63% |
3.92% |
HEX | E5 | F5 | 8F |
Decimal | 229 | 245 | 143 |
Binary | 11100101 | 11110101 | 10001111 |
Octal | 345 | 365 | 217 |
Examples of css and html codes for elements with #E5F58F color. Also use rgb(229,245,143) instead hex code.
.myTextColor { color: #E5F58F; }
<p style="color:#E5F58F">This sample text font color is #E5F58F.</p>
This text font color is #E5F58F.
.myBgColor { background-color: #E5F58F; }
<div style="background-color:#E5F58F">Inner text</div>
This div background color is #E5F58F.
.myBorderColor { border: 1px solid #E5F58F; }
<div style="border:3px solid #E5F58F">Div</div>
This div border color is #E5F58F.
.myOpacity80 { color: #E5F58F; opacity: 0.8; }
<p style="color:#E5F58F;opacity:0.8;">80%</p>
Text with #E5F58F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #E5F58F;}
<p style="text-shadow: 3px 3px 1px #E5F58F">Text here.</p>
This text has shadow with #E5F58F color.
.textShadow {text-shadow: 3px 3px 1px #E5F58F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #E5F58F, 5px 5px 20px red">Text here.</p>
This text has shadow with #E5F58F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#E5F58F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#E5F58F, Direction=45, Strength=4)">Text</p>
This text has shadow with #E5F58F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #E5F58F; -webkit-box-shadow: 1px 1px 3px 2px #E5F58F; box-shadow: 1px 1px 3px 2px #E5F58F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #E5F58F; -webkit-box-shadow: 1px 1px 3px 2px #E5F58F; box-shadow:1px 1px 3px 2px #E5F58F;">
Div content here</div>
This text has color #E5F58F on black background.
This text has color #E5F58F on white background.
This text has black color on #E5F58F background.
This text has white color on #E5F58F background.