HEX: #82B55D
RGB: (130,181,93)
#82B55D contains mainly red and green colors. Web safe color of #82B55D is #99CC66 (or #9C6).
#82B55D color RGB value is (130,181,93).
RGB: (130,181,93) (51%,71%,36%)
R 130 of 255 = 51%
G 181 of 255 = 71%
B 93 of 255 = 36%
R + G + B ~ 53%. #82B55D is middle color (not dark and not light).
R + G + B =
130 + 181 + 93 = 404 (100%)
R 130 of 404 ~ 32.18%
G 181 of 404 ~ 44.8%
B 93 of 404 ~ 23.02%
#82B55D color CMYK value is (28,0,49,29).
CMYK: (28,0,49,29) C28M0Y49K29 (28%,0%,49%,29%) (0.28/0.00/0.49/0.29)
82 | B5 | 5D | |
---|---|---|---|
RGB | 130 | 181 | 93 |
HSL | 95° | 37.29% | 53.73% |
HSB/HSV | 95° | 48.62% | 70.98% |
CMYK | 28.18% | 0.00% | 48.62% |
29.02% |
HEX | 82 | B5 | 5D |
Decimal | 130 | 181 | 93 |
Binary | 10000010 | 10110101 | 1011101 |
Octal | 202 | 265 | 135 |
Examples of css and html codes for elements with #82B55D color. Also use rgb(130,181,93) instead hex code.
.myTextColor { color: #82B55D; }
<p style="color:#82B55D">This sample text font color is #82B55D.</p>
This text font color is #82B55D.
.myBgColor { background-color: #82B55D; }
<div style="background-color:#82B55D">Inner text</div>
This div background color is #82B55D.
.myBorderColor { border: 1px solid #82B55D; }
<div style="border:3px solid #82B55D">Div</div>
This div border color is #82B55D.
.myOpacity80 { color: #82B55D; opacity: 0.8; }
<p style="color:#82B55D;opacity:0.8;">80%</p>
Text with #82B55D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #82B55D;}
<p style="text-shadow: 3px 3px 1px #82B55D">Text here.</p>
This text has shadow with #82B55D color.
.textShadow {text-shadow: 3px 3px 1px #82B55D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #82B55D, 5px 5px 20px red">Text here.</p>
This text has shadow with #82B55D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#82B55D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#82B55D, Direction=45, Strength=4)">Text</p>
This text has shadow with #82B55D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #82B55D; -webkit-box-shadow: 1px 1px 3px 2px #82B55D; box-shadow: 1px 1px 3px 2px #82B55D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #82B55D; -webkit-box-shadow: 1px 1px 3px 2px #82B55D; box-shadow:1px 1px 3px 2px #82B55D;">
Div content here</div>
This text has color #82B55D on black background.
This text has color #82B55D on white background.
This text has black color on #82B55D background.
This text has white color on #82B55D background.