HEX: #47D57B
RGB: (71,213,123)
#47D57B contains mainly green color. Web safe color of #47D57B is #33CC66 (or #3C6).
#47D57B color RGB value is (71,213,123).
RGB: (71,213,123) (28%,84%,48%)
R 71 of 255 = 28%
G 213 of 255 = 84%
B 123 of 255 = 48%
R + G + B ~ 53%. #47D57B is middle color (not dark and not light).
R + G + B =
71 + 213 + 123 = 407 (100%)
R 71 of 407 ~ 17.44%
G 213 of 407 ~ 52.33%
B 123 of 407 ~ 30.22%
#47D57B color CMYK value is (67,0,42,16).
CMYK: (67,0,42,16) C67M0Y42K16 (67%,0%,42%,16%) (0.67/0.00/0.42/0.16)
47 | D5 | 7B | |
---|---|---|---|
RGB | 71 | 213 | 123 |
HSL | 142° | 62.83% | 55.69% |
HSB/HSV | 142° | 66.67% | 83.53% |
CMYK | 66.67% | 0.00% | 42.25% |
16.47% |
HEX | 47 | D5 | 7B |
Decimal | 71 | 213 | 123 |
Binary | 1000111 | 11010101 | 1111011 |
Octal | 107 | 325 | 173 |
Examples of css and html codes for elements with #47D57B color. Also use rgb(71,213,123) instead hex code.
.myTextColor { color: #47D57B; }
<p style="color:#47D57B">This sample text font color is #47D57B.</p>
This text font color is #47D57B.
.myBgColor { background-color: #47D57B; }
<div style="background-color:#47D57B">Inner text</div>
This div background color is #47D57B.
.myBorderColor { border: 1px solid #47D57B; }
<div style="border:3px solid #47D57B">Div</div>
This div border color is #47D57B.
.myOpacity80 { color: #47D57B; opacity: 0.8; }
<p style="color:#47D57B;opacity:0.8;">80%</p>
Text with #47D57B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #47D57B;}
<p style="text-shadow: 3px 3px 1px #47D57B">Text here.</p>
This text has shadow with #47D57B color.
.textShadow {text-shadow: 3px 3px 1px #47D57B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #47D57B, 5px 5px 20px red">Text here.</p>
This text has shadow with #47D57B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#47D57B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#47D57B, Direction=45, Strength=4)">Text</p>
This text has shadow with #47D57B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #47D57B; -webkit-box-shadow: 1px 1px 3px 2px #47D57B; box-shadow: 1px 1px 3px 2px #47D57B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #47D57B; -webkit-box-shadow: 1px 1px 3px 2px #47D57B; box-shadow:1px 1px 3px 2px #47D57B;">
Div content here</div>
This text has color #47D57B on black background.
This text has color #47D57B on white background.
This text has black color on #47D57B background.
This text has white color on #47D57B background.