HEX: #4C664F
RGB: (76,102,79)
#4C664F contains red, green and blue colors in about the same proportion. Web safe color of #4C664F is #336666 (or #366).
#4C664F color RGB value is (76,102,79).
RGB: (76,102,79) (30%,40%,31%)
R 76 of 255 = 30%
G 102 of 255 = 40%
B 79 of 255 = 31%
R + G + B ~ 34%. #4C664F is quite dark color.
R + G + B =
76 + 102 + 79 = 257 (100%)
R 76 of 257 ~ 29.57%
G 102 of 257 ~ 39.69%
B 79 of 257 ~ 30.74%
#4C664F color CMYK value is (25,0,23,60).
CMYK: (25,0,23,60) C25M0Y23K60 (25%,0%,23%,60%) (0.25/0.00/0.23/0.60)
4C | 66 | 4F | |
---|---|---|---|
RGB | 76 | 102 | 79 |
HSL | 127° | 14.61% | 34.90% |
HSB/HSV | 127° | 25.49% | 40.00% |
CMYK | 25.49% | 0.00% | 22.55% |
60.00% |
HEX | 4C | 66 | 4F |
Decimal | 76 | 102 | 79 |
Binary | 1001100 | 1100110 | 1001111 |
Octal | 114 | 146 | 117 |
Examples of css and html codes for elements with #4C664F color. Also use rgb(76,102,79) instead hex code.
.myTextColor { color: #4C664F; }
<p style="color:#4C664F">This sample text font color is #4C664F.</p>
This text font color is #4C664F.
.myBgColor { background-color: #4C664F; }
<div style="background-color:#4C664F">Inner text</div>
This div background color is #4C664F.
.myBorderColor { border: 1px solid #4C664F; }
<div style="border:3px solid #4C664F">Div</div>
This div border color is #4C664F.
.myOpacity80 { color: #4C664F; opacity: 0.8; }
<p style="color:#4C664F;opacity:0.8;">80%</p>
Text with #4C664F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4C664F;}
<p style="text-shadow: 3px 3px 1px #4C664F">Text here.</p>
This text has shadow with #4C664F color.
.textShadow {text-shadow: 3px 3px 1px #4C664F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4C664F, 5px 5px 20px red">Text here.</p>
This text has shadow with #4C664F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4C664F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4C664F, Direction=45, Strength=4)">Text</p>
This text has shadow with #4C664F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4C664F; -webkit-box-shadow: 1px 1px 3px 2px #4C664F; box-shadow: 1px 1px 3px 2px #4C664F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4C664F; -webkit-box-shadow: 1px 1px 3px 2px #4C664F; box-shadow:1px 1px 3px 2px #4C664F;">
Div content here</div>
This text has color #4C664F on black background.
This text has color #4C664F on white background.
This text has black color on #4C664F background.
This text has white color on #4C664F background.