HEX: #47AD6F
RGB: (71,173,111)
#47AD6F contains mainly green color. Web safe color of #47AD6F is #339966 (or #396).
#47AD6F color RGB value is (71,173,111).
RGB: (71,173,111) (28%,68%,44%)
R 71 of 255 = 28%
G 173 of 255 = 68%
B 111 of 255 = 44%
R + G + B ~ 47%. #47AD6F is middle color (not dark and not light).
R + G + B =
71 + 173 + 111 = 355 (100%)
R 71 of 355 ~ 20%
G 173 of 355 ~ 48.73%
B 111 of 355 ~ 31.27%
#47AD6F color CMYK value is (59,0,36,32).
CMYK: (59,0,36,32) C59M0Y36K32 (59%,0%,36%,32%) (0.59/0.00/0.36/0.32)
47 | AD | 6F | |
---|---|---|---|
RGB | 71 | 173 | 111 |
HSL | 144° | 41.80% | 47.84% |
HSB/HSV | 144° | 58.96% | 67.84% |
CMYK | 58.96% | 0.00% | 35.84% |
32.16% |
HEX | 47 | AD | 6F |
Decimal | 71 | 173 | 111 |
Binary | 1000111 | 10101101 | 1101111 |
Octal | 107 | 255 | 157 |
Examples of css and html codes for elements with #47AD6F color. Also use rgb(71,173,111) instead hex code.
.myTextColor { color: #47AD6F; }
<p style="color:#47AD6F">This sample text font color is #47AD6F.</p>
This text font color is #47AD6F.
.myBgColor { background-color: #47AD6F; }
<div style="background-color:#47AD6F">Inner text</div>
This div background color is #47AD6F.
.myBorderColor { border: 1px solid #47AD6F; }
<div style="border:3px solid #47AD6F">Div</div>
This div border color is #47AD6F.
.myOpacity80 { color: #47AD6F; opacity: 0.8; }
<p style="color:#47AD6F;opacity:0.8;">80%</p>
Text with #47AD6F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47AD6F;}
<p style="text-shadow: 3px 3px 1px #47AD6F">Text here.</p>
This text has shadow with #47AD6F color.
.textShadow {text-shadow: 3px 3px 1px #47AD6F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47AD6F, 5px 5px 20px red">Text here.</p>
This text has shadow with #47AD6F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47AD6F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47AD6F, Direction=45, Strength=4)">Text</p>
This text has shadow with #47AD6F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47AD6F; -webkit-box-shadow: 1px 1px 3px 2px #47AD6F; box-shadow: 1px 1px 3px 2px #47AD6F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47AD6F; -webkit-box-shadow: 1px 1px 3px 2px #47AD6F; box-shadow:1px 1px 3px 2px #47AD6F;">
Div content here</div>
This text has color #47AD6F on black background.
This text has color #47AD6F on white background.
This text has black color on #47AD6F background.
This text has white color on #47AD6F background.