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