HEX: #476F38
RGB: (71,111,56)
#476F38 contains red, green and blue colors in about the same proportion. Web safe color of #476F38 is #336633 (or #363).
#476F38 color RGB value is (71,111,56).
RGB: (71,111,56) (28%,44%,22%)
R 71 of 255 = 28%
G 111 of 255 = 44%
B 56 of 255 = 22%
R + G + B ~ 31%. #476F38 is quite dark color.
R + G + B =
71 + 111 + 56 = 238 (100%)
R 71 of 238 ~ 29.83%
G 111 of 238 ~ 46.64%
B 56 of 238 ~ 23.53%
#476F38 color CMYK value is (36,0,50,56).
CMYK: (36,0,50,56) C36M0Y50K56 (36%,0%,50%,56%) (0.36/0.00/0.50/0.56)
47 | 6F | 38 | |
---|---|---|---|
RGB | 71 | 111 | 56 |
HSL | 104° | 32.93% | 32.75% |
HSB/HSV | 104° | 49.55% | 43.53% |
CMYK | 36.04% | 0.00% | 49.55% |
56.47% |
HEX | 47 | 6F | 38 |
Decimal | 71 | 111 | 56 |
Binary | 1000111 | 1101111 | 111000 |
Octal | 107 | 157 | 70 |
Examples of css and html codes for elements with #476F38 color. Also use rgb(71,111,56) instead hex code.
.myTextColor { color: #476F38; }
<p style="color:#476F38">This sample text font color is #476F38.</p>
This text font color is #476F38.
.myBgColor { background-color: #476F38; }
<div style="background-color:#476F38">Inner text</div>
This div background color is #476F38.
.myBorderColor { border: 1px solid #476F38; }
<div style="border:3px solid #476F38">Div</div>
This div border color is #476F38.
.myOpacity80 { color: #476F38; opacity: 0.8; }
<p style="color:#476F38;opacity:0.8;">80%</p>
Text with #476F38 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #476F38;}
<p style="text-shadow: 3px 3px 1px #476F38">Text here.</p>
This text has shadow with #476F38 color.
.textShadow {text-shadow: 3px 3px 1px #476F38, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #476F38, 5px 5px 20px red">Text here.</p>
This text has shadow with #476F38 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#476F38, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#476F38, Direction=45, Strength=4)">Text</p>
This text has shadow with #476F38 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #476F38; -webkit-box-shadow: 1px 1px 3px 2px #476F38; box-shadow: 1px 1px 3px 2px #476F38; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #476F38; -webkit-box-shadow: 1px 1px 3px 2px #476F38; box-shadow:1px 1px 3px 2px #476F38;">
Div content here</div>
This text has color #476F38 on black background.
This text has color #476F38 on white background.
This text has black color on #476F38 background.
This text has white color on #476F38 background.