HEX: #47AA77
RGB: (71,170,119)
#47AA77 contains mainly green and blue colors. Web safe color of #47AA77 is #339966 (or #396).
#47AA77 color RGB value is (71,170,119).
RGB: (71,170,119) (28%,67%,47%)
R 71 of 255 = 28%
G 170 of 255 = 67%
B 119 of 255 = 47%
R + G + B ~ 47%. #47AA77 is middle color (not dark and not light).
R + G + B =
71 + 170 + 119 = 360 (100%)
R 71 of 360 ~ 19.72%
G 170 of 360 ~ 47.22%
B 119 of 360 ~ 33.06%
#47AA77 color CMYK value is (58,0,30,33).
CMYK: (58,0,30,33) C58M0Y30K33 (58%,0%,30%,33%) (0.58/0.00/0.30/0.33)
47 | AA | 77 | |
---|---|---|---|
RGB | 71 | 170 | 119 |
HSL | 149° | 41.08% | 47.25% |
HSB/HSV | 149° | 58.24% | 66.67% |
CMYK | 58.24% | 0.00% | 30.00% |
33.33% |
HEX | 47 | AA | 77 |
Decimal | 71 | 170 | 119 |
Binary | 1000111 | 10101010 | 1110111 |
Octal | 107 | 252 | 167 |
Examples of css and html codes for elements with #47AA77 color. Also use rgb(71,170,119) instead hex code.
.myTextColor { color: #47AA77; }
<p style="color:#47AA77">This sample text font color is #47AA77.</p>
This text font color is #47AA77.
.myBgColor { background-color: #47AA77; }
<div style="background-color:#47AA77">Inner text</div>
This div background color is #47AA77.
.myBorderColor { border: 1px solid #47AA77; }
<div style="border:3px solid #47AA77">Div</div>
This div border color is #47AA77.
.myOpacity80 { color: #47AA77; opacity: 0.8; }
<p style="color:#47AA77;opacity:0.8;">80%</p>
Text with #47AA77 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47AA77;}
<p style="text-shadow: 3px 3px 1px #47AA77">Text here.</p>
This text has shadow with #47AA77 color.
.textShadow {text-shadow: 3px 3px 1px #47AA77, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47AA77, 5px 5px 20px red">Text here.</p>
This text has shadow with #47AA77 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47AA77, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47AA77, Direction=45, Strength=4)">Text</p>
This text has shadow with #47AA77 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47AA77; -webkit-box-shadow: 1px 1px 3px 2px #47AA77; box-shadow: 1px 1px 3px 2px #47AA77; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47AA77; -webkit-box-shadow: 1px 1px 3px 2px #47AA77; box-shadow:1px 1px 3px 2px #47AA77;">
Div content here</div>
This text has color #47AA77 on black background.
This text has color #47AA77 on white background.
This text has black color on #47AA77 background.
This text has white color on #47AA77 background.