HEX: #4C795B
RGB: (76,121,91)
#4C795B contains red, green and blue colors in about the same proportion. Web safe color of #4C795B is #336666 (or #366).
#4C795B color RGB value is (76,121,91).
RGB: (76,121,91) (30%,47%,36%)
R 76 of 255 = 30%
G 121 of 255 = 47%
B 91 of 255 = 36%
R + G + B ~ 38%. #4C795B is quite dark color.
R + G + B =
76 + 121 + 91 = 288 (100%)
R 76 of 288 ~ 26.39%
G 121 of 288 ~ 42.01%
B 91 of 288 ~ 31.6%
#4C795B color CMYK value is (37,0,25,53).
CMYK: (37,0,25,53) C37M0Y25K53 (37%,0%,25%,53%) (0.37/0.00/0.25/0.53)
4C | 79 | 5B | |
---|---|---|---|
RGB | 76 | 121 | 91 |
HSL | 140° | 22.84% | 38.63% |
HSB/HSV | 140° | 37.19% | 47.45% |
CMYK | 37.19% | 0.00% | 24.79% |
52.55% |
HEX | 4C | 79 | 5B |
Decimal | 76 | 121 | 91 |
Binary | 1001100 | 1111001 | 1011011 |
Octal | 114 | 171 | 133 |
Examples of css and html codes for elements with #4C795B color. Also use rgb(76,121,91) instead hex code.
.myTextColor { color: #4C795B; }
<p style="color:#4C795B">This sample text font color is #4C795B.</p>
This text font color is #4C795B.
.myBgColor { background-color: #4C795B; }
<div style="background-color:#4C795B">Inner text</div>
This div background color is #4C795B.
.myBorderColor { border: 1px solid #4C795B; }
<div style="border:3px solid #4C795B">Div</div>
This div border color is #4C795B.
.myOpacity80 { color: #4C795B; opacity: 0.8; }
<p style="color:#4C795B;opacity:0.8;">80%</p>
Text with #4C795B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4C795B;}
<p style="text-shadow: 3px 3px 1px #4C795B">Text here.</p>
This text has shadow with #4C795B color.
.textShadow {text-shadow: 3px 3px 1px #4C795B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4C795B, 5px 5px 20px red">Text here.</p>
This text has shadow with #4C795B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4C795B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4C795B, Direction=45, Strength=4)">Text</p>
This text has shadow with #4C795B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4C795B; -webkit-box-shadow: 1px 1px 3px 2px #4C795B; box-shadow: 1px 1px 3px 2px #4C795B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4C795B; -webkit-box-shadow: 1px 1px 3px 2px #4C795B; box-shadow:1px 1px 3px 2px #4C795B;">
Div content here</div>
This text has color #4C795B on black background.
This text has color #4C795B on white background.
This text has black color on #4C795B background.
This text has white color on #4C795B background.