HEX: #477A33
RGB: (71,122,51)
#477A33 contains mainly red and green colors. Web safe color of #477A33 is #336633 (or #363).
#477A33 color RGB value is (71,122,51).
RGB: (71,122,51) (28%,48%,20%)
R 71 of 255 = 28%
G 122 of 255 = 48%
B 51 of 255 = 20%
R + G + B ~ 32%. #477A33 is quite dark color.
R + G + B =
71 + 122 + 51 = 244 (100%)
R 71 of 244 ~ 29.1%
G 122 of 244 ~ 50%
B 51 of 244 ~ 20.9%
#477A33 color CMYK value is (42,0,58,52).
CMYK: (42,0,58,52) C42M0Y58K52 (42%,0%,58%,52%) (0.42/0.00/0.58/0.52)
47 | 7A | 33 | |
---|---|---|---|
RGB | 71 | 122 | 51 |
HSL | 103° | 41.04% | 33.92% |
HSB/HSV | 103° | 58.20% | 47.84% |
CMYK | 41.80% | 0.00% | 58.20% |
52.16% |
HEX | 47 | 7A | 33 |
Decimal | 71 | 122 | 51 |
Binary | 1000111 | 1111010 | 110011 |
Octal | 107 | 172 | 63 |
Examples of css and html codes for elements with #477A33 color. Also use rgb(71,122,51) instead hex code.
.myTextColor { color: #477A33; }
<p style="color:#477A33">This sample text font color is #477A33.</p>
This text font color is #477A33.
.myBgColor { background-color: #477A33; }
<div style="background-color:#477A33">Inner text</div>
This div background color is #477A33.
.myBorderColor { border: 1px solid #477A33; }
<div style="border:3px solid #477A33">Div</div>
This div border color is #477A33.
.myOpacity80 { color: #477A33; opacity: 0.8; }
<p style="color:#477A33;opacity:0.8;">80%</p>
Text with #477A33 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #477A33;}
<p style="text-shadow: 3px 3px 1px #477A33">Text here.</p>
This text has shadow with #477A33 color.
.textShadow {text-shadow: 3px 3px 1px #477A33, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #477A33, 5px 5px 20px red">Text here.</p>
This text has shadow with #477A33 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#477A33, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#477A33, Direction=45, Strength=4)">Text</p>
This text has shadow with #477A33 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #477A33; -webkit-box-shadow: 1px 1px 3px 2px #477A33; box-shadow: 1px 1px 3px 2px #477A33; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #477A33; -webkit-box-shadow: 1px 1px 3px 2px #477A33; box-shadow:1px 1px 3px 2px #477A33;">
Div content here</div>
This text has color #477A33 on black background.
This text has color #477A33 on white background.
This text has black color on #477A33 background.
This text has white color on #477A33 background.