HEX: #373B0D
RGB: (55,59,13)
#373B0D contains red, green and blue colors in about the same proportion. Web safe color of #373B0D is #333300 (or #330).
#373B0D color RGB value is (55,59,13).
RGB: (55,59,13) (22%,23%,5%)
R 55 of 255 = 22%
G 59 of 255 = 23%
B 13 of 255 = 5%
R + G + B ~ 17%. #373B0D is dark color.
R + G + B =
55 + 59 + 13 = 127 (100%)
R 55 of 127 ~ 43.31%
G 59 of 127 ~ 46.46%
B 13 of 127 ~ 10.24%
#373B0D color CMYK value is (7,0,78,77).
CMYK: (7,0,78,77) C7M0Y78K77 (7%,0%,78%,77%) (0.07/0.00/0.78/0.77)
37 | 3B | 0D | |
---|---|---|---|
RGB | 55 | 59 | 13 |
HSL | 65° | 63.89% | 14.12% |
HSB/HSV | 65° | 77.97% | 23.14% |
CMYK | 6.78% | 0.00% | 77.97% |
76.86% |
HEX | 37 | 3B | 0D |
Decimal | 55 | 59 | 13 |
Binary | 110111 | 111011 | 1101 |
Octal | 67 | 73 | 15 |
Examples of css and html codes for elements with #373B0D color. Also use rgb(55,59,13) instead hex code.
.myTextColor { color: #373B0D; }
<p style="color:#373B0D">This sample text font color is #373B0D.</p>
This text font color is #373B0D.
.myBgColor { background-color: #373B0D; }
<div style="background-color:#373B0D">Inner text</div>
This div background color is #373B0D.
.myBorderColor { border: 1px solid #373B0D; }
<div style="border:3px solid #373B0D">Div</div>
This div border color is #373B0D.
.myOpacity80 { color: #373B0D; opacity: 0.8; }
<p style="color:#373B0D;opacity:0.8;">80%</p>
Text with #373B0D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #373B0D;}
<p style="text-shadow: 3px 3px 1px #373B0D">Text here.</p>
This text has shadow with #373B0D color.
.textShadow {text-shadow: 3px 3px 1px #373B0D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #373B0D, 5px 5px 20px red">Text here.</p>
This text has shadow with #373B0D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#373B0D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#373B0D, Direction=45, Strength=4)">Text</p>
This text has shadow with #373B0D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #373B0D; -webkit-box-shadow: 1px 1px 3px 2px #373B0D; box-shadow: 1px 1px 3px 2px #373B0D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #373B0D; -webkit-box-shadow: 1px 1px 3px 2px #373B0D; box-shadow:1px 1px 3px 2px #373B0D;">
Div content here</div>
This text has color #373B0D on black background.
This text has color #373B0D on white background.
This text has black color on #373B0D background.
This text has white color on #373B0D background.