HEX: #37A59D
RGB: (55,165,157)
#37A59D contains mainly green and blue colors. Web safe color of #37A59D is #339999 (or #399).
#37A59D color RGB value is (55,165,157).
RGB: (55,165,157) (22%,65%,62%)
R 55 of 255 = 22%
G 165 of 255 = 65%
B 157 of 255 = 62%
R + G + B ~ 50%. #37A59D is middle color (not dark and not light).
R + G + B =
55 + 165 + 157 = 377 (100%)
R 55 of 377 ~ 14.59%
G 165 of 377 ~ 43.77%
B 157 of 377 ~ 41.64%
#37A59D color CMYK value is (67,0,5,35).
CMYK: (67,0,5,35) C67M0Y5K35 (67%,0%,5%,35%) (0.67/0.00/0.05/0.35)
37 | A5 | 9D | |
---|---|---|---|
RGB | 55 | 165 | 157 |
HSL | 176° | 50.00% | 43.14% |
HSB/HSV | 176° | 66.67% | 64.71% |
CMYK | 66.67% | 0.00% | 4.85% |
35.29% |
HEX | 37 | A5 | 9D |
Decimal | 55 | 165 | 157 |
Binary | 110111 | 10100101 | 10011101 |
Octal | 67 | 245 | 235 |
Examples of css and html codes for elements with #37A59D color. Also use rgb(55,165,157) instead hex code.
.myTextColor { color: #37A59D; }
<p style="color:#37A59D">This sample text font color is #37A59D.</p>
This text font color is #37A59D.
.myBgColor { background-color: #37A59D; }
<div style="background-color:#37A59D">Inner text</div>
This div background color is #37A59D.
.myBorderColor { border: 1px solid #37A59D; }
<div style="border:3px solid #37A59D">Div</div>
This div border color is #37A59D.
.myOpacity80 { color: #37A59D; opacity: 0.8; }
<p style="color:#37A59D;opacity:0.8;">80%</p>
Text with #37A59D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #37A59D;}
<p style="text-shadow: 3px 3px 1px #37A59D">Text here.</p>
This text has shadow with #37A59D color.
.textShadow {text-shadow: 3px 3px 1px #37A59D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #37A59D, 5px 5px 20px red">Text here.</p>
This text has shadow with #37A59D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#37A59D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#37A59D, Direction=45, Strength=4)">Text</p>
This text has shadow with #37A59D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #37A59D; -webkit-box-shadow: 1px 1px 3px 2px #37A59D; box-shadow: 1px 1px 3px 2px #37A59D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #37A59D; -webkit-box-shadow: 1px 1px 3px 2px #37A59D; box-shadow:1px 1px 3px 2px #37A59D;">
Div content here</div>
This text has color #37A59D on black background.
This text has color #37A59D on white background.
This text has black color on #37A59D background.
This text has white color on #37A59D background.