HEX: #82D764
RGB: (130,215,100)
#82D764 contains mainly green color. Web safe color of #82D764 is #99CC66 (or #9C6).
#82D764 color RGB value is (130,215,100).
RGB: (130,215,100) (51%,84%,39%)
R 130 of 255 = 51%
G 215 of 255 = 84%
B 100 of 255 = 39%
R + G + B ~ 58%. #82D764 is middle color (not dark and not light).
R + G + B =
130 + 215 + 100 = 445 (100%)
R 130 of 445 ~ 29.21%
G 215 of 445 ~ 48.31%
B 100 of 445 ~ 22.47%
#82D764 color CMYK value is (40,0,53,16).
CMYK: (40,0,53,16) C40M0Y53K16 (40%,0%,53%,16%) (0.40/0.00/0.53/0.16)
82 | D7 | 64 | |
---|---|---|---|
RGB | 130 | 215 | 100 |
HSL | 104° | 58.97% | 61.76% |
HSB/HSV | 104° | 53.49% | 84.31% |
CMYK | 39.53% | 0.00% | 53.49% |
15.69% |
HEX | 82 | D7 | 64 |
Decimal | 130 | 215 | 100 |
Binary | 10000010 | 11010111 | 1100100 |
Octal | 202 | 327 | 144 |
Examples of css and html codes for elements with #82D764 color. Also use rgb(130,215,100) instead hex code.
.myTextColor { color: #82D764; }
<p style="color:#82D764">This sample text font color is #82D764.</p>
This text font color is #82D764.
.myBgColor { background-color: #82D764; }
<div style="background-color:#82D764">Inner text</div>
This div background color is #82D764.
.myBorderColor { border: 1px solid #82D764; }
<div style="border:3px solid #82D764">Div</div>
This div border color is #82D764.
.myOpacity80 { color: #82D764; opacity: 0.8; }
<p style="color:#82D764;opacity:0.8;">80%</p>
Text with #82D764 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #82D764;}
<p style="text-shadow: 3px 3px 1px #82D764">Text here.</p>
This text has shadow with #82D764 color.
.textShadow {text-shadow: 3px 3px 1px #82D764, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #82D764, 5px 5px 20px red">Text here.</p>
This text has shadow with #82D764 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#82D764, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#82D764, Direction=45, Strength=4)">Text</p>
This text has shadow with #82D764 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #82D764; -webkit-box-shadow: 1px 1px 3px 2px #82D764; box-shadow: 1px 1px 3px 2px #82D764; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #82D764; -webkit-box-shadow: 1px 1px 3px 2px #82D764; box-shadow:1px 1px 3px 2px #82D764;">
Div content here</div>
This text has color #82D764 on black background.
This text has color #82D764 on white background.
This text has black color on #82D764 background.
This text has white color on #82D764 background.