HEX: #374F48
RGB: (55,79,72)
#374F48 contains red, green and blue colors in about the same proportion. Web safe color of #374F48 is #336633 (or #363).
#374F48 color RGB value is (55,79,72).
RGB: (55,79,72) (22%,31%,28%)
R 55 of 255 = 22%
G 79 of 255 = 31%
B 72 of 255 = 28%
R + G + B ~ 27%. #374F48 is quite dark color.
R + G + B =
55 + 79 + 72 = 206 (100%)
R 55 of 206 ~ 26.7%
G 79 of 206 ~ 38.35%
B 72 of 206 ~ 34.95%
#374F48 color CMYK value is (30,0,9,69).
CMYK: (30,0,9,69) C30M0Y9K69 (30%,0%,9%,69%) (0.30/0.00/0.09/0.69)
37 | 4F | 48 | |
---|---|---|---|
RGB | 55 | 79 | 72 |
HSL | 163° | 17.91% | 26.27% |
HSB/HSV | 163° | 30.38% | 30.98% |
CMYK | 30.38% | 0.00% | 8.86% |
69.02% |
HEX | 37 | 4F | 48 |
Decimal | 55 | 79 | 72 |
Binary | 110111 | 1001111 | 1001000 |
Octal | 67 | 117 | 110 |
Examples of css and html codes for elements with #374F48 color. Also use rgb(55,79,72) instead hex code.
.myTextColor { color: #374F48; }
<p style="color:#374F48">This sample text font color is #374F48.</p>
This text font color is #374F48.
.myBgColor { background-color: #374F48; }
<div style="background-color:#374F48">Inner text</div>
This div background color is #374F48.
.myBorderColor { border: 1px solid #374F48; }
<div style="border:3px solid #374F48">Div</div>
This div border color is #374F48.
.myOpacity80 { color: #374F48; opacity: 0.8; }
<p style="color:#374F48;opacity:0.8;">80%</p>
Text with #374F48 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #374F48;}
<p style="text-shadow: 3px 3px 1px #374F48">Text here.</p>
This text has shadow with #374F48 color.
.textShadow {text-shadow: 3px 3px 1px #374F48, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #374F48, 5px 5px 20px red">Text here.</p>
This text has shadow with #374F48 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#374F48, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#374F48, Direction=45, Strength=4)">Text</p>
This text has shadow with #374F48 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #374F48; -webkit-box-shadow: 1px 1px 3px 2px #374F48; box-shadow: 1px 1px 3px 2px #374F48; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #374F48; -webkit-box-shadow: 1px 1px 3px 2px #374F48; box-shadow:1px 1px 3px 2px #374F48;">
Div content here</div>
This text has color #374F48 on black background.
This text has color #374F48 on white background.
This text has black color on #374F48 background.
This text has white color on #374F48 background.