HEX: #82B819
RGB: (130,184,25)
#82B819 contains mainly red and green colors. Web safe color of #82B819 is #99CC00 (or #9C0).
#82B819 color RGB value is (130,184,25).
RGB: (130,184,25) (51%,72%,10%)
R 130 of 255 = 51%
G 184 of 255 = 72%
B 25 of 255 = 10%
R + G + B ~ 44%. #82B819 is middle color (not dark and not light).
R + G + B =
130 + 184 + 25 = 339 (100%)
R 130 of 339 ~ 38.35%
G 184 of 339 ~ 54.28%
B 25 of 339 ~ 7.37%
#82B819 color CMYK value is (29,0,86,28).
CMYK: (29,0,86,28) C29M0Y86K28 (29%,0%,86%,28%) (0.29/0.00/0.86/0.28)
82 | B8 | 19 | |
---|---|---|---|
RGB | 130 | 184 | 25 |
HSL | 80° | 76.08% | 40.98% |
HSB/HSV | 80° | 86.41% | 72.16% |
CMYK | 29.35% | 0.00% | 86.41% |
27.84% |
HEX | 82 | B8 | 19 |
Decimal | 130 | 184 | 25 |
Binary | 10000010 | 10111000 | 11001 |
Octal | 202 | 270 | 31 |
Examples of css and html codes for elements with #82B819 color. Also use rgb(130,184,25) instead hex code.
.myTextColor { color: #82B819; }
<p style="color:#82B819">This sample text font color is #82B819.</p>
This text font color is #82B819.
.myBgColor { background-color: #82B819; }
<div style="background-color:#82B819">Inner text</div>
This div background color is #82B819.
.myBorderColor { border: 1px solid #82B819; }
<div style="border:3px solid #82B819">Div</div>
This div border color is #82B819.
.myOpacity80 { color: #82B819; opacity: 0.8; }
<p style="color:#82B819;opacity:0.8;">80%</p>
Text with #82B819 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #82B819;}
<p style="text-shadow: 3px 3px 1px #82B819">Text here.</p>
This text has shadow with #82B819 color.
.textShadow {text-shadow: 3px 3px 1px #82B819, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #82B819, 5px 5px 20px red">Text here.</p>
This text has shadow with #82B819 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#82B819, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#82B819, Direction=45, Strength=4)">Text</p>
This text has shadow with #82B819 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #82B819; -webkit-box-shadow: 1px 1px 3px 2px #82B819; box-shadow: 1px 1px 3px 2px #82B819; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #82B819; -webkit-box-shadow: 1px 1px 3px 2px #82B819; box-shadow:1px 1px 3px 2px #82B819;">
Div content here</div>
This text has color #82B819 on black background.
This text has color #82B819 on white background.
This text has black color on #82B819 background.
This text has white color on #82B819 background.