HEX: #965E61
RGB: (150,94,97)
#965E61 contains red, green and blue colors in about the same proportion. Web safe color of #965E61 is #996666 (or #966).
#965E61 color RGB value is (150,94,97).
RGB: (150,94,97) (59%,37%,38%)
R 150 of 255 = 59%
G 94 of 255 = 37%
B 97 of 255 = 38%
R + G + B ~ 45%. #965E61 is middle color (not dark and not light).
R + G + B =
150 + 94 + 97 = 341 (100%)
R 150 of 341 ~ 43.99%
G 94 of 341 ~ 27.57%
B 97 of 341 ~ 28.45%
#965E61 color CMYK value is (0,37,35,41).
CMYK: (0,37,35,41) C0M37Y35K41 (0%,37%,35%,41%) (0.00/0.37/0.35/0.41)
96 | 5E | 61 | |
---|---|---|---|
RGB | 150 | 94 | 97 |
HSL | 357° | 22.95% | 47.84% |
HSB/HSV | 357° | 37.33% | 58.82% |
CMYK | 0.00% | 37.33% | 35.33% |
41.18% |
HEX | 96 | 5E | 61 |
Decimal | 150 | 94 | 97 |
Binary | 10010110 | 1011110 | 1100001 |
Octal | 226 | 136 | 141 |
Examples of css and html codes for elements with #965E61 color. Also use rgb(150,94,97) instead hex code.
.myTextColor { color: #965E61; }
<p style="color:#965E61">This sample text font color is #965E61.</p>
This text font color is #965E61.
.myBgColor { background-color: #965E61; }
<div style="background-color:#965E61">Inner text</div>
This div background color is #965E61.
.myBorderColor { border: 1px solid #965E61; }
<div style="border:3px solid #965E61">Div</div>
This div border color is #965E61.
.myOpacity80 { color: #965E61; opacity: 0.8; }
<p style="color:#965E61;opacity:0.8;">80%</p>
Text with #965E61 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #965E61;}
<p style="text-shadow: 3px 3px 1px #965E61">Text here.</p>
This text has shadow with #965E61 color.
.textShadow {text-shadow: 3px 3px 1px #965E61, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #965E61, 5px 5px 20px red">Text here.</p>
This text has shadow with #965E61 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#965E61, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#965E61, Direction=45, Strength=4)">Text</p>
This text has shadow with #965E61 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #965E61; -webkit-box-shadow: 1px 1px 3px 2px #965E61; box-shadow: 1px 1px 3px 2px #965E61; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #965E61; -webkit-box-shadow: 1px 1px 3px 2px #965E61; box-shadow:1px 1px 3px 2px #965E61;">
Div content here</div>
This text has color #965E61 on black background.
This text has color #965E61 on white background.
This text has black color on #965E61 background.
This text has white color on #965E61 background.