HEX: #337473
RGB: (51,116,115)
#337473 contains mainly green and blue colors. Web safe color of #337473 is #336666 (or #366).
#337473 color RGB value is (51,116,115).
RGB: (51,116,115) (20%,45%,45%)
R 51 of 255 = 20%
G 116 of 255 = 45%
B 115 of 255 = 45%
R + G + B ~ 37%. #337473 is quite dark color.
R + G + B =
51 + 116 + 115 = 282 (100%)
R 51 of 282 ~ 18.09%
G 116 of 282 ~ 41.13%
B 115 of 282 ~ 40.78%
#337473 color CMYK value is (56,0,1,55).
CMYK: (56,0,1,55) C56M0Y1K55 (56%,0%,1%,55%) (0.56/0.00/0.01/0.55)
33 | 74 | 73 | |
---|---|---|---|
RGB | 51 | 116 | 115 |
HSL | 179° | 38.92% | 32.75% |
HSB/HSV | 179° | 56.03% | 45.49% |
CMYK | 56.03% | 0.00% | 0.86% |
54.51% |
HEX | 33 | 74 | 73 |
Decimal | 51 | 116 | 115 |
Binary | 110011 | 1110100 | 1110011 |
Octal | 63 | 164 | 163 |
Examples of css and html codes for elements with #337473 color. Also use rgb(51,116,115) instead hex code.
.myTextColor { color: #337473; }
<p style="color:#337473">This sample text font color is #337473.</p>
This text font color is #337473.
.myBgColor { background-color: #337473; }
<div style="background-color:#337473">Inner text</div>
This div background color is #337473.
.myBorderColor { border: 1px solid #337473; }
<div style="border:3px solid #337473">Div</div>
This div border color is #337473.
.myOpacity80 { color: #337473; opacity: 0.8; }
<p style="color:#337473;opacity:0.8;">80%</p>
Text with #337473 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #337473;}
<p style="text-shadow: 3px 3px 1px #337473">Text here.</p>
This text has shadow with #337473 color.
.textShadow {text-shadow: 3px 3px 1px #337473, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #337473, 5px 5px 20px red">Text here.</p>
This text has shadow with #337473 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#337473, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#337473, Direction=45, Strength=4)">Text</p>
This text has shadow with #337473 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #337473; -webkit-box-shadow: 1px 1px 3px 2px #337473; box-shadow: 1px 1px 3px 2px #337473; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #337473; -webkit-box-shadow: 1px 1px 3px 2px #337473; box-shadow:1px 1px 3px 2px #337473;">
Div content here</div>
This text has color #337473 on black background.
This text has color #337473 on white background.
This text has black color on #337473 background.
This text has white color on #337473 background.