HEX: #8EDD40
RGB: (142,221,64)
#8EDD40 contains mainly green color. Web safe color of #8EDD40 is #99CC33 (or #9C3).
#8EDD40 color RGB value is (142,221,64).
RGB: (142,221,64) (56%,87%,25%)
R 142 of 255 = 56%
G 221 of 255 = 87%
B 64 of 255 = 25%
R + G + B ~ 56%. #8EDD40 is middle color (not dark and not light).
R + G + B =
142 + 221 + 64 = 427 (100%)
R 142 of 427 ~ 33.26%
G 221 of 427 ~ 51.76%
B 64 of 427 ~ 14.99%
#8EDD40 color CMYK value is (36,0,71,13).
CMYK: (36,0,71,13) C36M0Y71K13 (36%,0%,71%,13%) (0.36/0.00/0.71/0.13)
8E | DD | 40 | |
---|---|---|---|
RGB | 142 | 221 | 64 |
HSL | 90° | 69.78% | 55.88% |
HSB/HSV | 90° | 71.04% | 86.67% |
CMYK | 35.75% | 0.00% | 71.04% |
13.33% |
HEX | 8E | DD | 40 |
Decimal | 142 | 221 | 64 |
Binary | 10001110 | 11011101 | 1000000 |
Octal | 216 | 335 | 100 |
Examples of css and html codes for elements with #8EDD40 color. Also use rgb(142,221,64) instead hex code.
.myTextColor { color: #8EDD40; }
<p style="color:#8EDD40">This sample text font color is #8EDD40.</p>
This text font color is #8EDD40.
.myBgColor { background-color: #8EDD40; }
<div style="background-color:#8EDD40">Inner text</div>
This div background color is #8EDD40.
.myBorderColor { border: 1px solid #8EDD40; }
<div style="border:3px solid #8EDD40">Div</div>
This div border color is #8EDD40.
.myOpacity80 { color: #8EDD40; opacity: 0.8; }
<p style="color:#8EDD40;opacity:0.8;">80%</p>
Text with #8EDD40 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #8EDD40;}
<p style="text-shadow: 3px 3px 1px #8EDD40">Text here.</p>
This text has shadow with #8EDD40 color.
.textShadow {text-shadow: 3px 3px 1px #8EDD40, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #8EDD40, 5px 5px 20px red">Text here.</p>
This text has shadow with #8EDD40 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#8EDD40, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#8EDD40, Direction=45, Strength=4)">Text</p>
This text has shadow with #8EDD40 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #8EDD40; -webkit-box-shadow: 1px 1px 3px 2px #8EDD40; box-shadow: 1px 1px 3px 2px #8EDD40; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #8EDD40; -webkit-box-shadow: 1px 1px 3px 2px #8EDD40; box-shadow:1px 1px 3px 2px #8EDD40;">
Div content here</div>
This text has color #8EDD40 on black background.
This text has color #8EDD40 on white background.
This text has black color on #8EDD40 background.
This text has white color on #8EDD40 background.