HEX: #5ED761
RGB: (94,215,97)
#5ED761 contains mainly green color. Web safe color of #5ED761 is #66CC66 (or #6C6).
#5ED761 color RGB value is (94,215,97).
RGB: (94,215,97) (37%,84%,38%)
R 94 of 255 = 37%
G 215 of 255 = 84%
B 97 of 255 = 38%
R + G + B ~ 53%. #5ED761 is middle color (not dark and not light).
R + G + B =
94 + 215 + 97 = 406 (100%)
R 94 of 406 ~ 23.15%
G 215 of 406 ~ 52.96%
B 97 of 406 ~ 23.89%
#5ED761 color CMYK value is (56,0,55,16).
CMYK: (56,0,55,16) C56M0Y55K16 (56%,0%,55%,16%) (0.56/0.00/0.55/0.16)
5E | D7 | 61 | |
---|---|---|---|
RGB | 94 | 215 | 97 |
HSL | 121° | 60.20% | 60.59% |
HSB/HSV | 121° | 56.28% | 84.31% |
CMYK | 56.28% | 0.00% | 54.88% |
15.69% |
HEX | 5E | D7 | 61 |
Decimal | 94 | 215 | 97 |
Binary | 1011110 | 11010111 | 1100001 |
Octal | 136 | 327 | 141 |
Examples of css and html codes for elements with #5ED761 color. Also use rgb(94,215,97) instead hex code.
.myTextColor { color: #5ED761; }
<p style="color:#5ED761">This sample text font color is #5ED761.</p>
This text font color is #5ED761.
.myBgColor { background-color: #5ED761; }
<div style="background-color:#5ED761">Inner text</div>
This div background color is #5ED761.
.myBorderColor { border: 1px solid #5ED761; }
<div style="border:3px solid #5ED761">Div</div>
This div border color is #5ED761.
.myOpacity80 { color: #5ED761; opacity: 0.8; }
<p style="color:#5ED761;opacity:0.8;">80%</p>
Text with #5ED761 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #5ED761;}
<p style="text-shadow: 3px 3px 1px #5ED761">Text here.</p>
This text has shadow with #5ED761 color.
.textShadow {text-shadow: 3px 3px 1px #5ED761, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #5ED761, 5px 5px 20px red">Text here.</p>
This text has shadow with #5ED761 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#5ED761, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#5ED761, Direction=45, Strength=4)">Text</p>
This text has shadow with #5ED761 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #5ED761; -webkit-box-shadow: 1px 1px 3px 2px #5ED761; box-shadow: 1px 1px 3px 2px #5ED761; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #5ED761; -webkit-box-shadow: 1px 1px 3px 2px #5ED761; box-shadow:1px 1px 3px 2px #5ED761;">
Div content here</div>
This text has color #5ED761 on black background.
This text has color #5ED761 on white background.
This text has black color on #5ED761 background.
This text has white color on #5ED761 background.