HEX: #6B370B
RGB: (107,55,11)
#6B370B contains mainly red and green colors. Web safe color of #6B370B is #663300 (or #630).
#6B370B color RGB value is (107,55,11).
RGB: (107,55,11) (42%,22%,4%)
R 107 of 255 = 42%
G 55 of 255 = 22%
B 11 of 255 = 4%
R + G + B ~ 23%. #6B370B is dark color.
R + G + B =
107 + 55 + 11 = 173 (100%)
R 107 of 173 ~ 61.85%
G 55 of 173 ~ 31.79%
B 11 of 173 ~ 6.36%
#6B370B color CMYK value is (0,49,90,58).
CMYK: (0,49,90,58) C0M49Y90K58 (0%,49%,90%,58%) (0.00/0.49/0.90/0.58)
6B | 37 | 0B | |
---|---|---|---|
RGB | 107 | 55 | 11 |
HSL | 28° | 81.36% | 23.14% |
HSB/HSV | 28° | 89.72% | 41.96% |
CMYK | 0.00% | 48.60% | 89.72% |
58.04% |
HEX | 6B | 37 | 0B |
Decimal | 107 | 55 | 11 |
Binary | 1101011 | 110111 | 1011 |
Octal | 153 | 67 | 13 |
Examples of css and html codes for elements with #6B370B color. Also use rgb(107,55,11) instead hex code.
.myTextColor { color: #6B370B; }
<p style="color:#6B370B">This sample text font color is #6B370B.</p>
This text font color is #6B370B.
.myBgColor { background-color: #6B370B; }
<div style="background-color:#6B370B">Inner text</div>
This div background color is #6B370B.
.myBorderColor { border: 1px solid #6B370B; }
<div style="border:3px solid #6B370B">Div</div>
This div border color is #6B370B.
.myOpacity80 { color: #6B370B; opacity: 0.8; }
<p style="color:#6B370B;opacity:0.8;">80%</p>
Text with #6B370B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B370B;}
<p style="text-shadow: 3px 3px 1px #6B370B">Text here.</p>
This text has shadow with #6B370B color.
.textShadow {text-shadow: 3px 3px 1px #6B370B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B370B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B370B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B370B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B370B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B370B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B370B; -webkit-box-shadow: 1px 1px 3px 2px #6B370B; box-shadow: 1px 1px 3px 2px #6B370B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B370B; -webkit-box-shadow: 1px 1px 3px 2px #6B370B; box-shadow:1px 1px 3px 2px #6B370B;">
Div content here</div>
This text has color #6B370B on black background.
This text has color #6B370B on white background.
This text has black color on #6B370B background.
This text has white color on #6B370B background.