HEX: #47AF63
RGB: (71,175,99)
#47AF63 contains mainly green color. Web safe color of #47AF63 is #339966 (or #396).
#47AF63 color RGB value is (71,175,99).
RGB: (71,175,99) (28%,69%,39%)
R 71 of 255 = 28%
G 175 of 255 = 69%
B 99 of 255 = 39%
R + G + B ~ 45%. #47AF63 is middle color (not dark and not light).
R + G + B =
71 + 175 + 99 = 345 (100%)
R 71 of 345 ~ 20.58%
G 175 of 345 ~ 50.72%
B 99 of 345 ~ 28.7%
#47AF63 color CMYK value is (59,0,43,31).
CMYK: (59,0,43,31) C59M0Y43K31 (59%,0%,43%,31%) (0.59/0.00/0.43/0.31)
47 | AF | 63 | |
---|---|---|---|
RGB | 71 | 175 | 99 |
HSL | 136° | 42.28% | 48.24% |
HSB/HSV | 136° | 59.43% | 68.63% |
CMYK | 59.43% | 0.00% | 43.43% |
31.37% |
HEX | 47 | AF | 63 |
Decimal | 71 | 175 | 99 |
Binary | 1000111 | 10101111 | 1100011 |
Octal | 107 | 257 | 143 |
Examples of css and html codes for elements with #47AF63 color. Also use rgb(71,175,99) instead hex code.
.myTextColor { color: #47AF63; }
<p style="color:#47AF63">This sample text font color is #47AF63.</p>
This text font color is #47AF63.
.myBgColor { background-color: #47AF63; }
<div style="background-color:#47AF63">Inner text</div>
This div background color is #47AF63.
.myBorderColor { border: 1px solid #47AF63; }
<div style="border:3px solid #47AF63">Div</div>
This div border color is #47AF63.
.myOpacity80 { color: #47AF63; opacity: 0.8; }
<p style="color:#47AF63;opacity:0.8;">80%</p>
Text with #47AF63 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47AF63;}
<p style="text-shadow: 3px 3px 1px #47AF63">Text here.</p>
This text has shadow with #47AF63 color.
.textShadow {text-shadow: 3px 3px 1px #47AF63, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47AF63, 5px 5px 20px red">Text here.</p>
This text has shadow with #47AF63 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47AF63, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47AF63, Direction=45, Strength=4)">Text</p>
This text has shadow with #47AF63 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47AF63; -webkit-box-shadow: 1px 1px 3px 2px #47AF63; box-shadow: 1px 1px 3px 2px #47AF63; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47AF63; -webkit-box-shadow: 1px 1px 3px 2px #47AF63; box-shadow:1px 1px 3px 2px #47AF63;">
Div content here</div>
This text has color #47AF63 on black background.
This text has color #47AF63 on white background.
This text has black color on #47AF63 background.
This text has white color on #47AF63 background.