HEX: #337E4E
RGB: (51,126,78)
#337E4E contains mainly green and blue colors. Web safe color of #337E4E is #336666 (or #366).
#337E4E color RGB value is (51,126,78).
RGB: (51,126,78) (20%,49%,31%)
R 51 of 255 = 20%
G 126 of 255 = 49%
B 78 of 255 = 31%
R + G + B ~ 33%. #337E4E is quite dark color.
R + G + B =
51 + 126 + 78 = 255 (100%)
R 51 of 255 ~ 20%
G 126 of 255 ~ 49.41%
B 78 of 255 ~ 30.59%
#337E4E color CMYK value is (60,0,38,51).
CMYK: (60,0,38,51) C60M0Y38K51 (60%,0%,38%,51%) (0.60/0.00/0.38/0.51)
33 | 7E | 4E | |
---|---|---|---|
RGB | 51 | 126 | 78 |
HSL | 142° | 42.37% | 34.71% |
HSB/HSV | 142° | 59.52% | 49.41% |
CMYK | 59.52% | 0.00% | 38.10% |
50.59% |
HEX | 33 | 7E | 4E |
Decimal | 51 | 126 | 78 |
Binary | 110011 | 1111110 | 1001110 |
Octal | 63 | 176 | 116 |
Examples of css and html codes for elements with #337E4E color. Also use rgb(51,126,78) instead hex code.
.myTextColor { color: #337E4E; }
<p style="color:#337E4E">This sample text font color is #337E4E.</p>
This text font color is #337E4E.
.myBgColor { background-color: #337E4E; }
<div style="background-color:#337E4E">Inner text</div>
This div background color is #337E4E.
.myBorderColor { border: 1px solid #337E4E; }
<div style="border:3px solid #337E4E">Div</div>
This div border color is #337E4E.
.myOpacity80 { color: #337E4E; opacity: 0.8; }
<p style="color:#337E4E;opacity:0.8;">80%</p>
Text with #337E4E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #337E4E;}
<p style="text-shadow: 3px 3px 1px #337E4E">Text here.</p>
This text has shadow with #337E4E color.
.textShadow {text-shadow: 3px 3px 1px #337E4E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #337E4E, 5px 5px 20px red">Text here.</p>
This text has shadow with #337E4E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#337E4E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#337E4E, Direction=45, Strength=4)">Text</p>
This text has shadow with #337E4E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #337E4E; -webkit-box-shadow: 1px 1px 3px 2px #337E4E; box-shadow: 1px 1px 3px 2px #337E4E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #337E4E; -webkit-box-shadow: 1px 1px 3px 2px #337E4E; box-shadow:1px 1px 3px 2px #337E4E;">
Div content here</div>
This text has color #337E4E on black background.
This text has color #337E4E on white background.
This text has black color on #337E4E background.
This text has white color on #337E4E background.