HEX: #706B37
RGB: (112,107,55)
#706B37 contains red, green and blue colors in about the same proportion. Web safe color of #706B37 is #666633 (or #663).
#706B37 color RGB value is (112,107,55).
RGB: (112,107,55) (44%,42%,22%)
R 112 of 255 = 44%
G 107 of 255 = 42%
B 55 of 255 = 22%
R + G + B ~ 36%. #706B37 is quite dark color.
R + G + B =
112 + 107 + 55 = 274 (100%)
R 112 of 274 ~ 40.88%
G 107 of 274 ~ 39.05%
B 55 of 274 ~ 20.07%
#706B37 color CMYK value is (0,4,51,56).
CMYK: (0,4,51,56) C0M4Y51K56 (0%,4%,51%,56%) (0.00/0.04/0.51/0.56)
70 | 6B | 37 | |
---|---|---|---|
RGB | 112 | 107 | 55 |
HSL | 55° | 34.13% | 32.75% |
HSB/HSV | 55° | 50.89% | 43.92% |
CMYK | 0.00% | 4.46% | 50.89% |
56.08% |
HEX | 70 | 6B | 37 |
Decimal | 112 | 107 | 55 |
Binary | 1110000 | 1101011 | 110111 |
Octal | 160 | 153 | 67 |
Examples of css and html codes for elements with #706B37 color. Also use rgb(112,107,55) instead hex code.
.myTextColor { color: #706B37; }
<p style="color:#706B37">This sample text font color is #706B37.</p>
This text font color is #706B37.
.myBgColor { background-color: #706B37; }
<div style="background-color:#706B37">Inner text</div>
This div background color is #706B37.
.myBorderColor { border: 1px solid #706B37; }
<div style="border:3px solid #706B37">Div</div>
This div border color is #706B37.
.myOpacity80 { color: #706B37; opacity: 0.8; }
<p style="color:#706B37;opacity:0.8;">80%</p>
Text with #706B37 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #706B37;}
<p style="text-shadow: 3px 3px 1px #706B37">Text here.</p>
This text has shadow with #706B37 color.
.textShadow {text-shadow: 3px 3px 1px #706B37, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #706B37, 5px 5px 20px red">Text here.</p>
This text has shadow with #706B37 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#706B37, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#706B37, Direction=45, Strength=4)">Text</p>
This text has shadow with #706B37 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #706B37; -webkit-box-shadow: 1px 1px 3px 2px #706B37; box-shadow: 1px 1px 3px 2px #706B37; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #706B37; -webkit-box-shadow: 1px 1px 3px 2px #706B37; box-shadow:1px 1px 3px 2px #706B37;">
Div content here</div>
This text has color #706B37 on black background.
This text has color #706B37 on white background.
This text has black color on #706B37 background.
This text has white color on #706B37 background.