HEX: #52ED61
RGB: (82,237,97)
#52ED61 contains mainly green color. Web safe color of #52ED61 is #66FF66 (or #6F6).
#52ED61 color RGB value is (82,237,97).
RGB: (82,237,97) (32%,93%,38%)
R 82 of 255 = 32%
G 237 of 255 = 93%
B 97 of 255 = 38%
R + G + B ~ 54%. #52ED61 is middle color (not dark and not light).
R + G + B =
82 + 237 + 97 = 416 (100%)
R 82 of 416 ~ 19.71%
G 237 of 416 ~ 56.97%
B 97 of 416 ~ 23.32%
#52ED61 color CMYK value is (65,0,59,7).
CMYK: (65,0,59,7) C65M0Y59K7 (65%,0%,59%,7%) (0.65/0.00/0.59/0.07)
52 | ED | 61 | |
---|---|---|---|
RGB | 82 | 237 | 97 |
HSL | 126° | 81.15% | 62.55% |
HSB/HSV | 126° | 65.40% | 92.94% |
CMYK | 65.40% | 0.00% | 59.07% |
7.06% |
HEX | 52 | ED | 61 |
Decimal | 82 | 237 | 97 |
Binary | 1010010 | 11101101 | 1100001 |
Octal | 122 | 355 | 141 |
Examples of css and html codes for elements with #52ED61 color. Also use rgb(82,237,97) instead hex code.
.myTextColor { color: #52ED61; }
<p style="color:#52ED61">This sample text font color is #52ED61.</p>
This text font color is #52ED61.
.myBgColor { background-color: #52ED61; }
<div style="background-color:#52ED61">Inner text</div>
This div background color is #52ED61.
.myBorderColor { border: 1px solid #52ED61; }
<div style="border:3px solid #52ED61">Div</div>
This div border color is #52ED61.
.myOpacity80 { color: #52ED61; opacity: 0.8; }
<p style="color:#52ED61;opacity:0.8;">80%</p>
Text with #52ED61 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52ED61;}
<p style="text-shadow: 3px 3px 1px #52ED61">Text here.</p>
This text has shadow with #52ED61 color.
.textShadow {text-shadow: 3px 3px 1px #52ED61, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52ED61, 5px 5px 20px red">Text here.</p>
This text has shadow with #52ED61 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52ED61, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52ED61, Direction=45, Strength=4)">Text</p>
This text has shadow with #52ED61 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52ED61; -webkit-box-shadow: 1px 1px 3px 2px #52ED61; box-shadow: 1px 1px 3px 2px #52ED61; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52ED61; -webkit-box-shadow: 1px 1px 3px 2px #52ED61; box-shadow:1px 1px 3px 2px #52ED61;">
Div content here</div>
This text has color #52ED61 on black background.
This text has color #52ED61 on white background.
This text has black color on #52ED61 background.
This text has white color on #52ED61 background.