HEX: #4C584F
RGB: (76,88,79)
#4C584F contains red, green and blue colors in about the same proportion. Web safe color of #4C584F is #336666 (or #366).
#4C584F color RGB value is (76,88,79).
RGB: (76,88,79) (30%,35%,31%)
R 76 of 255 = 30%
G 88 of 255 = 35%
B 79 of 255 = 31%
R + G + B ~ 32%. #4C584F is quite dark color.
R + G + B =
76 + 88 + 79 = 243 (100%)
R 76 of 243 ~ 31.28%
G 88 of 243 ~ 36.21%
B 79 of 243 ~ 32.51%
#4C584F color CMYK value is (14,0,10,65).
CMYK: (14,0,10,65) C14M0Y10K65 (14%,0%,10%,65%) (0.14/0.00/0.10/0.65)
4C | 58 | 4F | |
---|---|---|---|
RGB | 76 | 88 | 79 |
HSL | 135° | 7.32% | 32.16% |
HSB/HSV | 135° | 13.64% | 34.51% |
CMYK | 13.64% | 0.00% | 10.23% |
65.49% |
HEX | 4C | 58 | 4F |
Decimal | 76 | 88 | 79 |
Binary | 1001100 | 1011000 | 1001111 |
Octal | 114 | 130 | 117 |
Examples of css and html codes for elements with #4C584F color. Also use rgb(76,88,79) instead hex code.
.myTextColor { color: #4C584F; }
<p style="color:#4C584F">This sample text font color is #4C584F.</p>
This text font color is #4C584F.
.myBgColor { background-color: #4C584F; }
<div style="background-color:#4C584F">Inner text</div>
This div background color is #4C584F.
.myBorderColor { border: 1px solid #4C584F; }
<div style="border:3px solid #4C584F">Div</div>
This div border color is #4C584F.
.myOpacity80 { color: #4C584F; opacity: 0.8; }
<p style="color:#4C584F;opacity:0.8;">80%</p>
Text with #4C584F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4C584F;}
<p style="text-shadow: 3px 3px 1px #4C584F">Text here.</p>
This text has shadow with #4C584F color.
.textShadow {text-shadow: 3px 3px 1px #4C584F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4C584F, 5px 5px 20px red">Text here.</p>
This text has shadow with #4C584F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4C584F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4C584F, Direction=45, Strength=4)">Text</p>
This text has shadow with #4C584F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4C584F; -webkit-box-shadow: 1px 1px 3px 2px #4C584F; box-shadow: 1px 1px 3px 2px #4C584F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4C584F; -webkit-box-shadow: 1px 1px 3px 2px #4C584F; box-shadow:1px 1px 3px 2px #4C584F;">
Div content here</div>
This text has color #4C584F on black background.
This text has color #4C584F on white background.
This text has black color on #4C584F background.
This text has white color on #4C584F background.