HEX: #6B713B
RGB: (107,113,59)
#6B713B contains red, green and blue colors in about the same proportion. Web safe color of #6B713B is #666633 (or #663).
#6B713B color RGB value is (107,113,59).
RGB: (107,113,59) (42%,44%,23%)
R 107 of 255 = 42%
G 113 of 255 = 44%
B 59 of 255 = 23%
R + G + B ~ 36%. #6B713B is quite dark color.
R + G + B =
107 + 113 + 59 = 279 (100%)
R 107 of 279 ~ 38.35%
G 113 of 279 ~ 40.5%
B 59 of 279 ~ 21.15%
#6B713B color CMYK value is (5,0,48,56).
CMYK: (5,0,48,56) C5M0Y48K56 (5%,0%,48%,56%) (0.05/0.00/0.48/0.56)
6B | 71 | 3B | |
---|---|---|---|
RGB | 107 | 113 | 59 |
HSL | 67° | 31.40% | 33.73% |
HSB/HSV | 67° | 47.79% | 44.31% |
CMYK | 5.31% | 0.00% | 47.79% |
55.69% |
HEX | 6B | 71 | 3B |
Decimal | 107 | 113 | 59 |
Binary | 1101011 | 1110001 | 111011 |
Octal | 153 | 161 | 73 |
Examples of css and html codes for elements with #6B713B color. Also use rgb(107,113,59) instead hex code.
.myTextColor { color: #6B713B; }
<p style="color:#6B713B">This sample text font color is #6B713B.</p>
This text font color is #6B713B.
.myBgColor { background-color: #6B713B; }
<div style="background-color:#6B713B">Inner text</div>
This div background color is #6B713B.
.myBorderColor { border: 1px solid #6B713B; }
<div style="border:3px solid #6B713B">Div</div>
This div border color is #6B713B.
.myOpacity80 { color: #6B713B; opacity: 0.8; }
<p style="color:#6B713B;opacity:0.8;">80%</p>
Text with #6B713B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B713B;}
<p style="text-shadow: 3px 3px 1px #6B713B">Text here.</p>
This text has shadow with #6B713B color.
.textShadow {text-shadow: 3px 3px 1px #6B713B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B713B, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B713B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B713B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B713B, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B713B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B713B; -webkit-box-shadow: 1px 1px 3px 2px #6B713B; box-shadow: 1px 1px 3px 2px #6B713B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B713B; -webkit-box-shadow: 1px 1px 3px 2px #6B713B; box-shadow:1px 1px 3px 2px #6B713B;">
Div content here</div>
This text has color #6B713B on black background.
This text has color #6B713B on white background.
This text has black color on #6B713B background.
This text has white color on #6B713B background.