HEX: #4E476B
RGB: (78,71,107)
#4E476B contains red, green and blue colors in about the same proportion. Web safe color of #4E476B is #663366 (or #636).
#4E476B color RGB value is (78,71,107).
RGB: (78,71,107) (31%,28%,42%)
R 78 of 255 = 31%
G 71 of 255 = 28%
B 107 of 255 = 42%
R + G + B ~ 34%. #4E476B is quite dark color.
R + G + B =
78 + 71 + 107 = 256 (100%)
R 78 of 256 ~ 30.47%
G 71 of 256 ~ 27.73%
B 107 of 256 ~ 41.8%
#4E476B color CMYK value is (27,34,0,58).
CMYK: (27,34,0,58) C27M34Y0K58 (27%,34%,0%,58%) (0.27/0.34/0.00/0.58)
4E | 47 | 6B | |
---|---|---|---|
RGB | 78 | 71 | 107 |
HSL | 252° | 20.22% | 34.90% |
HSB/HSV | 252° | 33.64% | 41.96% |
CMYK | 27.10% | 33.64% | 0.00% |
58.04% |
HEX | 4E | 47 | 6B |
Decimal | 78 | 71 | 107 |
Binary | 1001110 | 1000111 | 1101011 |
Octal | 116 | 107 | 153 |
Examples of css and html codes for elements with #4E476B color. Also use rgb(78,71,107) instead hex code.
.myTextColor { color: #4E476B; }
<p style="color:#4E476B">This sample text font color is #4E476B.</p>
This text font color is #4E476B.
.myBgColor { background-color: #4E476B; }
<div style="background-color:#4E476B">Inner text</div>
This div background color is #4E476B.
.myBorderColor { border: 1px solid #4E476B; }
<div style="border:3px solid #4E476B">Div</div>
This div border color is #4E476B.
.myOpacity80 { color: #4E476B; opacity: 0.8; }
<p style="color:#4E476B;opacity:0.8;">80%</p>
Text with #4E476B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4E476B;}
<p style="text-shadow: 3px 3px 1px #4E476B">Text here.</p>
This text has shadow with #4E476B color.
.textShadow {text-shadow: 3px 3px 1px #4E476B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4E476B, 5px 5px 20px red">Text here.</p>
This text has shadow with #4E476B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4E476B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4E476B, Direction=45, Strength=4)">Text</p>
This text has shadow with #4E476B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4E476B; -webkit-box-shadow: 1px 1px 3px 2px #4E476B; box-shadow: 1px 1px 3px 2px #4E476B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4E476B; -webkit-box-shadow: 1px 1px 3px 2px #4E476B; box-shadow:1px 1px 3px 2px #4E476B;">
Div content here</div>
This text has color #4E476B on black background.
This text has color #4E476B on white background.
This text has black color on #4E476B background.
This text has white color on #4E476B background.