HEX: #52A84C
RGB: (82,168,76)
#52A84C contains mainly green color. Web safe color of #52A84C is #669933 (or #693).
#52A84C color RGB value is (82,168,76).
RGB: (82,168,76) (32%,66%,30%)
R 82 of 255 = 32%
G 168 of 255 = 66%
B 76 of 255 = 30%
R + G + B ~ 43%. #52A84C is middle color (not dark and not light).
R + G + B =
82 + 168 + 76 = 326 (100%)
R 82 of 326 ~ 25.15%
G 168 of 326 ~ 51.53%
B 76 of 326 ~ 23.31%
#52A84C color CMYK value is (51,0,55,34).
CMYK: (51,0,55,34) C51M0Y55K34 (51%,0%,55%,34%) (0.51/0.00/0.55/0.34)
52 | A8 | 4C | |
---|---|---|---|
RGB | 82 | 168 | 76 |
HSL | 116° | 37.70% | 47.84% |
HSB/HSV | 116° | 54.76% | 65.88% |
CMYK | 51.19% | 0.00% | 54.76% |
34.12% |
HEX | 52 | A8 | 4C |
Decimal | 82 | 168 | 76 |
Binary | 1010010 | 10101000 | 1001100 |
Octal | 122 | 250 | 114 |
Examples of css and html codes for elements with #52A84C color. Also use rgb(82,168,76) instead hex code.
.myTextColor { color: #52A84C; }
<p style="color:#52A84C">This sample text font color is #52A84C.</p>
This text font color is #52A84C.
.myBgColor { background-color: #52A84C; }
<div style="background-color:#52A84C">Inner text</div>
This div background color is #52A84C.
.myBorderColor { border: 1px solid #52A84C; }
<div style="border:3px solid #52A84C">Div</div>
This div border color is #52A84C.
.myOpacity80 { color: #52A84C; opacity: 0.8; }
<p style="color:#52A84C;opacity:0.8;">80%</p>
Text with #52A84C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #52A84C;}
<p style="text-shadow: 3px 3px 1px #52A84C">Text here.</p>
This text has shadow with #52A84C color.
.textShadow {text-shadow: 3px 3px 1px #52A84C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #52A84C, 5px 5px 20px red">Text here.</p>
This text has shadow with #52A84C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#52A84C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#52A84C, Direction=45, Strength=4)">Text</p>
This text has shadow with #52A84C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #52A84C; -webkit-box-shadow: 1px 1px 3px 2px #52A84C; box-shadow: 1px 1px 3px 2px #52A84C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #52A84C; -webkit-box-shadow: 1px 1px 3px 2px #52A84C; box-shadow:1px 1px 3px 2px #52A84C;">
Div content here</div>
This text has color #52A84C on black background.
This text has color #52A84C on white background.
This text has black color on #52A84C background.
This text has white color on #52A84C background.