HEX: #9E736A
RGB: (158,115,106)
#9E736A contains red, green and blue colors in about the same proportion. Web safe color of #9E736A is #996666 (or #966).
#9E736A color RGB value is (158,115,106).
RGB: (158,115,106) (62%,45%,42%)
R 158 of 255 = 62%
G 115 of 255 = 45%
B 106 of 255 = 42%
R + G + B ~ 50%. #9E736A is middle color (not dark and not light).
R + G + B =
158 + 115 + 106 = 379 (100%)
R 158 of 379 ~ 41.69%
G 115 of 379 ~ 30.34%
B 106 of 379 ~ 27.97%
#9E736A color CMYK value is (0,27,33,38).
CMYK: (0,27,33,38) C0M27Y33K38 (0%,27%,33%,38%) (0.00/0.27/0.33/0.38)
9E | 73 | 6A | |
---|---|---|---|
RGB | 158 | 115 | 106 |
HSL | 10° | 21.14% | 51.76% |
HSB/HSV | 10° | 32.91% | 61.96% |
CMYK | 0.00% | 27.22% | 32.91% |
38.04% |
HEX | 9E | 73 | 6A |
Decimal | 158 | 115 | 106 |
Binary | 10011110 | 1110011 | 1101010 |
Octal | 236 | 163 | 152 |
Examples of css and html codes for elements with #9E736A color. Also use rgb(158,115,106) instead hex code.
.myTextColor { color: #9E736A; }
<p style="color:#9E736A">This sample text font color is #9E736A.</p>
This text font color is #9E736A.
.myBgColor { background-color: #9E736A; }
<div style="background-color:#9E736A">Inner text</div>
This div background color is #9E736A.
.myBorderColor { border: 1px solid #9E736A; }
<div style="border:3px solid #9E736A">Div</div>
This div border color is #9E736A.
.myOpacity80 { color: #9E736A; opacity: 0.8; }
<p style="color:#9E736A;opacity:0.8;">80%</p>
Text with #9E736A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9E736A;}
<p style="text-shadow: 3px 3px 1px #9E736A">Text here.</p>
This text has shadow with #9E736A color.
.textShadow {text-shadow: 3px 3px 1px #9E736A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9E736A, 5px 5px 20px red">Text here.</p>
This text has shadow with #9E736A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9E736A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9E736A, Direction=45, Strength=4)">Text</p>
This text has shadow with #9E736A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9E736A; -webkit-box-shadow: 1px 1px 3px 2px #9E736A; box-shadow: 1px 1px 3px 2px #9E736A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9E736A; -webkit-box-shadow: 1px 1px 3px 2px #9E736A; box-shadow:1px 1px 3px 2px #9E736A;">
Div content here</div>
This text has color #9E736A on black background.
This text has color #9E736A on white background.
This text has black color on #9E736A background.
This text has white color on #9E736A background.