HEX: #82E443
RGB: (130,228,67)
#82E443 contains mainly green color. Web safe color of #82E443 is #99CC33 (or #9C3).
#82E443 color RGB value is (130,228,67).
RGB: (130,228,67) (51%,89%,26%)
R 130 of 255 = 51%
G 228 of 255 = 89%
B 67 of 255 = 26%
R + G + B ~ 55%. #82E443 is middle color (not dark and not light).
R + G + B =
130 + 228 + 67 = 425 (100%)
R 130 of 425 ~ 30.59%
G 228 of 425 ~ 53.65%
B 67 of 425 ~ 15.76%
#82E443 color CMYK value is (43,0,71,11).
CMYK: (43,0,71,11) C43M0Y71K11 (43%,0%,71%,11%) (0.43/0.00/0.71/0.11)
82 | E4 | 43 | |
---|---|---|---|
RGB | 130 | 228 | 67 |
HSL | 97° | 74.88% | 57.84% |
HSB/HSV | 97° | 70.61% | 89.41% |
CMYK | 42.98% | 0.00% | 70.61% |
10.59% |
HEX | 82 | E4 | 43 |
Decimal | 130 | 228 | 67 |
Binary | 10000010 | 11100100 | 1000011 |
Octal | 202 | 344 | 103 |
Examples of css and html codes for elements with #82E443 color. Also use rgb(130,228,67) instead hex code.
.myTextColor { color: #82E443; }
<p style="color:#82E443">This sample text font color is #82E443.</p>
This text font color is #82E443.
.myBgColor { background-color: #82E443; }
<div style="background-color:#82E443">Inner text</div>
This div background color is #82E443.
.myBorderColor { border: 1px solid #82E443; }
<div style="border:3px solid #82E443">Div</div>
This div border color is #82E443.
.myOpacity80 { color: #82E443; opacity: 0.8; }
<p style="color:#82E443;opacity:0.8;">80%</p>
Text with #82E443 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #82E443;}
<p style="text-shadow: 3px 3px 1px #82E443">Text here.</p>
This text has shadow with #82E443 color.
.textShadow {text-shadow: 3px 3px 1px #82E443, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #82E443, 5px 5px 20px red">Text here.</p>
This text has shadow with #82E443 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#82E443, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#82E443, Direction=45, Strength=4)">Text</p>
This text has shadow with #82E443 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #82E443; -webkit-box-shadow: 1px 1px 3px 2px #82E443; box-shadow: 1px 1px 3px 2px #82E443; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #82E443; -webkit-box-shadow: 1px 1px 3px 2px #82E443; box-shadow:1px 1px 3px 2px #82E443;">
Div content here</div>
This text has color #82E443 on black background.
This text has color #82E443 on white background.
This text has black color on #82E443 background.
This text has white color on #82E443 background.