HEX: #4D617A
RGB: (77,97,122)
#4D617A contains red, green and blue colors in about the same proportion. Web safe color of #4D617A is #336666 (or #366).
#4D617A color RGB value is (77,97,122).
RGB: (77,97,122) (30%,38%,48%)
R 77 of 255 = 30%
G 97 of 255 = 38%
B 122 of 255 = 48%
R + G + B ~ 39%. #4D617A is quite dark color.
R + G + B =
77 + 97 + 122 = 296 (100%)
R 77 of 296 ~ 26.01%
G 97 of 296 ~ 32.77%
B 122 of 296 ~ 41.22%
#4D617A color CMYK value is (37,20,0,52).
CMYK: (37,20,0,52) C37M20Y0K52 (37%,20%,0%,52%) (0.37/0.20/0.00/0.52)
4D | 61 | 7A | |
---|---|---|---|
RGB | 77 | 97 | 122 |
HSL | 213° | 22.61% | 39.02% |
HSB/HSV | 213° | 36.89% | 47.84% |
CMYK | 36.89% | 20.49% | 0.00% |
52.16% |
HEX | 4D | 61 | 7A |
Decimal | 77 | 97 | 122 |
Binary | 1001101 | 1100001 | 1111010 |
Octal | 115 | 141 | 172 |
Examples of css and html codes for elements with #4D617A color. Also use rgb(77,97,122) instead hex code.
.myTextColor { color: #4D617A; }
<p style="color:#4D617A">This sample text font color is #4D617A.</p>
This text font color is #4D617A.
.myBgColor { background-color: #4D617A; }
<div style="background-color:#4D617A">Inner text</div>
This div background color is #4D617A.
.myBorderColor { border: 1px solid #4D617A; }
<div style="border:3px solid #4D617A">Div</div>
This div border color is #4D617A.
.myOpacity80 { color: #4D617A; opacity: 0.8; }
<p style="color:#4D617A;opacity:0.8;">80%</p>
Text with #4D617A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4D617A;}
<p style="text-shadow: 3px 3px 1px #4D617A">Text here.</p>
This text has shadow with #4D617A color.
.textShadow {text-shadow: 3px 3px 1px #4D617A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4D617A, 5px 5px 20px red">Text here.</p>
This text has shadow with #4D617A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4D617A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4D617A, Direction=45, Strength=4)">Text</p>
This text has shadow with #4D617A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4D617A; -webkit-box-shadow: 1px 1px 3px 2px #4D617A; box-shadow: 1px 1px 3px 2px #4D617A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4D617A; -webkit-box-shadow: 1px 1px 3px 2px #4D617A; box-shadow:1px 1px 3px 2px #4D617A;">
Div content here</div>
This text has color #4D617A on black background.
This text has color #4D617A on white background.
This text has black color on #4D617A background.
This text has white color on #4D617A background.