HEX: #3CB371
RGB: (60,179,113)
Color name is MediumSeaGreen. #3CB371 contains mainly green color. Web safe color of #3CB371 is #339966 (or #396).
#3CB371 color RGB value is (60,179,113).
RGB: (60,179,113) (24%,70%,44%)
R 60 of 255 = 24%
G 179 of 255 = 70%
B 113 of 255 = 44%
R + G + B ~ 46%. #3CB371 is middle color (not dark and not light).
R + G + B =
60 + 179 + 113 = 352 (100%)
R 60 of 352 ~ 17.05%
G 179 of 352 ~ 50.85%
B 113 of 352 ~ 32.1%
#3CB371 color CMYK value is (66,0,37,30).
CMYK: (66,0,37,30) C66M0Y37K30 (66%,0%,37%,30%) (0.66/0.00/0.37/0.30)
3C | B3 | 71 | |
---|---|---|---|
RGB | 60 | 179 | 113 |
HSL | 147° | 49.79% | 46.86% |
HSB/HSV | 147° | 66.48% | 70.20% |
CMYK | 66.48% | 0.00% | 36.87% |
29.80% |
HEX | 3C | B3 | 71 |
Decimal | 60 | 179 | 113 |
Binary | 111100 | 10110011 | 1110001 |
Octal | 74 | 263 | 161 |
Examples of css and html codes for elements with #3CB371 color. Also use rgb(60,179,113) instead hex code.
.myTextColor { color: #3CB371; }
<p style="color:#3CB371">This sample text font color is #3CB371.</p>
This text font color is #3CB371.
.myBgColor { background-color: #3CB371; }
<div style="background-color:#3CB371">Inner text</div>
This div background color is #3CB371.
.myBorderColor { border: 1px solid #3CB371; }
<div style="border:3px solid #3CB371">Div</div>
This div border color is #3CB371.
.myOpacity80 { color: #3CB371; opacity: 0.8; }
<p style="color:#3CB371;opacity:0.8;">80%</p>
Text with #3CB371 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #3CB371;}
<p style="text-shadow: 3px 3px 1px #3CB371">Text here.</p>
This text has shadow with #3CB371 color.
.textShadow {text-shadow: 3px 3px 1px #3CB371, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #3CB371, 5px 5px 20px red">Text here.</p>
This text has shadow with #3CB371 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#3CB371, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#3CB371, Direction=45, Strength=4)">Text</p>
This text has shadow with #3CB371 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #3CB371; -webkit-box-shadow: 1px 1px 3px 2px #3CB371; box-shadow: 1px 1px 3px 2px #3CB371; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #3CB371; -webkit-box-shadow: 1px 1px 3px 2px #3CB371; box-shadow:1px 1px 3px 2px #3CB371;">
Div content here</div>
This text has color #3CB371 on black background.
This text has color #3CB371 on white background.
This text has black color on #3CB371 background.
This text has white color on #3CB371 background.