HEX: #715B24
RGB: (113,91,36)
#715B24 contains mainly red and green colors. Web safe color of #715B24 is #666633 (or #663).
#715B24 color RGB value is (113,91,36).
RGB: (113,91,36) (44%,36%,14%)
R 113 of 255 = 44%
G 91 of 255 = 36%
B 36 of 255 = 14%
R + G + B ~ 31%. #715B24 is quite dark color.
R + G + B =
113 + 91 + 36 = 240 (100%)
R 113 of 240 ~ 47.08%
G 91 of 240 ~ 37.92%
B 36 of 240 ~ 15%
#715B24 color CMYK value is (0,19,68,56).
CMYK: (0,19,68,56) C0M19Y68K56 (0%,19%,68%,56%) (0.00/0.19/0.68/0.56)
71 | 5B | 24 | |
---|---|---|---|
RGB | 113 | 91 | 36 |
HSL | 43° | 51.68% | 29.22% |
HSB/HSV | 43° | 68.14% | 44.31% |
CMYK | 0.00% | 19.47% | 68.14% |
55.69% |
HEX | 71 | 5B | 24 |
Decimal | 113 | 91 | 36 |
Binary | 1110001 | 1011011 | 100100 |
Octal | 161 | 133 | 44 |
Examples of css and html codes for elements with #715B24 color. Also use rgb(113,91,36) instead hex code.
.myTextColor { color: #715B24; }
<p style="color:#715B24">This sample text font color is #715B24.</p>
This text font color is #715B24.
.myBgColor { background-color: #715B24; }
<div style="background-color:#715B24">Inner text</div>
This div background color is #715B24.
.myBorderColor { border: 1px solid #715B24; }
<div style="border:3px solid #715B24">Div</div>
This div border color is #715B24.
.myOpacity80 { color: #715B24; opacity: 0.8; }
<p style="color:#715B24;opacity:0.8;">80%</p>
Text with #715B24 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #715B24;}
<p style="text-shadow: 3px 3px 1px #715B24">Text here.</p>
This text has shadow with #715B24 color.
.textShadow {text-shadow: 3px 3px 1px #715B24, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #715B24, 5px 5px 20px red">Text here.</p>
This text has shadow with #715B24 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#715B24, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#715B24, Direction=45, Strength=4)">Text</p>
This text has shadow with #715B24 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #715B24; -webkit-box-shadow: 1px 1px 3px 2px #715B24; box-shadow: 1px 1px 3px 2px #715B24; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #715B24; -webkit-box-shadow: 1px 1px 3px 2px #715B24; box-shadow:1px 1px 3px 2px #715B24;">
Div content here</div>
This text has color #715B24 on black background.
This text has color #715B24 on white background.
This text has black color on #715B24 background.
This text has white color on #715B24 background.