HEX: #476A4D
RGB: (71,106,77)
#476A4D contains red, green and blue colors in about the same proportion. Web safe color of #476A4D is #336633 (or #363).
#476A4D color RGB value is (71,106,77).
RGB: (71,106,77) (28%,42%,30%)
R 71 of 255 = 28%
G 106 of 255 = 42%
B 77 of 255 = 30%
R + G + B ~ 33%. #476A4D is quite dark color.
R + G + B =
71 + 106 + 77 = 254 (100%)
R 71 of 254 ~ 27.95%
G 106 of 254 ~ 41.73%
B 77 of 254 ~ 30.31%
#476A4D color CMYK value is (33,0,27,58).
CMYK: (33,0,27,58) C33M0Y27K58 (33%,0%,27%,58%) (0.33/0.00/0.27/0.58)
47 | 6A | 4D | |
---|---|---|---|
RGB | 71 | 106 | 77 |
HSL | 130° | 19.77% | 34.71% |
HSB/HSV | 130° | 33.02% | 41.57% |
CMYK | 33.02% | 0.00% | 27.36% |
58.43% |
HEX | 47 | 6A | 4D |
Decimal | 71 | 106 | 77 |
Binary | 1000111 | 1101010 | 1001101 |
Octal | 107 | 152 | 115 |
Examples of css and html codes for elements with #476A4D color. Also use rgb(71,106,77) instead hex code.
.myTextColor { color: #476A4D; }
<p style="color:#476A4D">This sample text font color is #476A4D.</p>
This text font color is #476A4D.
.myBgColor { background-color: #476A4D; }
<div style="background-color:#476A4D">Inner text</div>
This div background color is #476A4D.
.myBorderColor { border: 1px solid #476A4D; }
<div style="border:3px solid #476A4D">Div</div>
This div border color is #476A4D.
.myOpacity80 { color: #476A4D; opacity: 0.8; }
<p style="color:#476A4D;opacity:0.8;">80%</p>
Text with #476A4D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #476A4D;}
<p style="text-shadow: 3px 3px 1px #476A4D">Text here.</p>
This text has shadow with #476A4D color.
.textShadow {text-shadow: 3px 3px 1px #476A4D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #476A4D, 5px 5px 20px red">Text here.</p>
This text has shadow with #476A4D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#476A4D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#476A4D, Direction=45, Strength=4)">Text</p>
This text has shadow with #476A4D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #476A4D; -webkit-box-shadow: 1px 1px 3px 2px #476A4D; box-shadow: 1px 1px 3px 2px #476A4D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #476A4D; -webkit-box-shadow: 1px 1px 3px 2px #476A4D; box-shadow:1px 1px 3px 2px #476A4D;">
Div content here</div>
This text has color #476A4D on black background.
This text has color #476A4D on white background.
This text has black color on #476A4D background.
This text has white color on #476A4D background.