HEX: #37475D
RGB: (55,71,93)
#37475D contains red, green and blue colors in about the same proportion. Web safe color of #37475D is #333366 (or #336).
#37475D color RGB value is (55,71,93).
RGB: (55,71,93) (22%,28%,36%)
R 55 of 255 = 22%
G 71 of 255 = 28%
B 93 of 255 = 36%
R + G + B ~ 29%. #37475D is quite dark color.
R + G + B =
55 + 71 + 93 = 219 (100%)
R 55 of 219 ~ 25.11%
G 71 of 219 ~ 32.42%
B 93 of 219 ~ 42.47%
#37475D color CMYK value is (41,24,0,64).
CMYK: (41,24,0,64) C41M24Y0K64 (41%,24%,0%,64%) (0.41/0.24/0.00/0.64)
37 | 47 | 5D | |
---|---|---|---|
RGB | 55 | 71 | 93 |
HSL | 215° | 25.68% | 29.02% |
HSB/HSV | 215° | 40.86% | 36.47% |
CMYK | 40.86% | 23.66% | 0.00% |
63.53% |
HEX | 37 | 47 | 5D |
Decimal | 55 | 71 | 93 |
Binary | 110111 | 1000111 | 1011101 |
Octal | 67 | 107 | 135 |
Examples of css and html codes for elements with #37475D color. Also use rgb(55,71,93) instead hex code.
.myTextColor { color: #37475D; }
<p style="color:#37475D">This sample text font color is #37475D.</p>
This text font color is #37475D.
.myBgColor { background-color: #37475D; }
<div style="background-color:#37475D">Inner text</div>
This div background color is #37475D.
.myBorderColor { border: 1px solid #37475D; }
<div style="border:3px solid #37475D">Div</div>
This div border color is #37475D.
.myOpacity80 { color: #37475D; opacity: 0.8; }
<p style="color:#37475D;opacity:0.8;">80%</p>
Text with #37475D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #37475D;}
<p style="text-shadow: 3px 3px 1px #37475D">Text here.</p>
This text has shadow with #37475D color.
.textShadow {text-shadow: 3px 3px 1px #37475D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #37475D, 5px 5px 20px red">Text here.</p>
This text has shadow with #37475D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#37475D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#37475D, Direction=45, Strength=4)">Text</p>
This text has shadow with #37475D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #37475D; -webkit-box-shadow: 1px 1px 3px 2px #37475D; box-shadow: 1px 1px 3px 2px #37475D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #37475D; -webkit-box-shadow: 1px 1px 3px 2px #37475D; box-shadow:1px 1px 3px 2px #37475D;">
Div content here</div>
This text has color #37475D on black background.
This text has color #37475D on white background.
This text has black color on #37475D background.
This text has white color on #37475D background.