HEX: #4A8252
RGB: (74,130,82)
#4A8252 contains red, green and blue colors in about the same proportion. Web safe color of #4A8252 is #339966 (or #396).
#4A8252 color RGB value is (74,130,82).
RGB: (74,130,82) (29%,51%,32%)
R 74 of 255 = 29%
G 130 of 255 = 51%
B 82 of 255 = 32%
R + G + B ~ 37%. #4A8252 is quite dark color.
R + G + B =
74 + 130 + 82 = 286 (100%)
R 74 of 286 ~ 25.87%
G 130 of 286 ~ 45.45%
B 82 of 286 ~ 28.67%
#4A8252 color CMYK value is (43,0,37,49).
CMYK: (43,0,37,49) C43M0Y37K49 (43%,0%,37%,49%) (0.43/0.00/0.37/0.49)
4A | 82 | 52 | |
---|---|---|---|
RGB | 74 | 130 | 82 |
HSL | 129° | 27.45% | 40.00% |
HSB/HSV | 129° | 43.08% | 50.98% |
CMYK | 43.08% | 0.00% | 36.92% |
49.02% |
HEX | 4A | 82 | 52 |
Decimal | 74 | 130 | 82 |
Binary | 1001010 | 10000010 | 1010010 |
Octal | 112 | 202 | 122 |
Examples of css and html codes for elements with #4A8252 color. Also use rgb(74,130,82) instead hex code.
.myTextColor { color: #4A8252; }
<p style="color:#4A8252">This sample text font color is #4A8252.</p>
This text font color is #4A8252.
.myBgColor { background-color: #4A8252; }
<div style="background-color:#4A8252">Inner text</div>
This div background color is #4A8252.
.myBorderColor { border: 1px solid #4A8252; }
<div style="border:3px solid #4A8252">Div</div>
This div border color is #4A8252.
.myOpacity80 { color: #4A8252; opacity: 0.8; }
<p style="color:#4A8252;opacity:0.8;">80%</p>
Text with #4A8252 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4A8252;}
<p style="text-shadow: 3px 3px 1px #4A8252">Text here.</p>
This text has shadow with #4A8252 color.
.textShadow {text-shadow: 3px 3px 1px #4A8252, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4A8252, 5px 5px 20px red">Text here.</p>
This text has shadow with #4A8252 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4A8252, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4A8252, Direction=45, Strength=4)">Text</p>
This text has shadow with #4A8252 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4A8252; -webkit-box-shadow: 1px 1px 3px 2px #4A8252; box-shadow: 1px 1px 3px 2px #4A8252; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4A8252; -webkit-box-shadow: 1px 1px 3px 2px #4A8252; box-shadow:1px 1px 3px 2px #4A8252;">
Div content here</div>
This text has color #4A8252 on black background.
This text has color #4A8252 on white background.
This text has black color on #4A8252 background.
This text has white color on #4A8252 background.