HEX: #977E5A
RGB: (151,126,90)
#977E5A contains mainly red and green colors. Web safe color of #977E5A is #996666 (or #966).
#977E5A color RGB value is (151,126,90).
RGB: (151,126,90) (59%,49%,35%)
R 151 of 255 = 59%
G 126 of 255 = 49%
B 90 of 255 = 35%
R + G + B ~ 48%. #977E5A is middle color (not dark and not light).
R + G + B =
151 + 126 + 90 = 367 (100%)
R 151 of 367 ~ 41.14%
G 126 of 367 ~ 34.33%
B 90 of 367 ~ 24.52%
#977E5A color CMYK value is (0,17,40,41).
CMYK: (0,17,40,41) C0M17Y40K41 (0%,17%,40%,41%) (0.00/0.17/0.40/0.41)
97 | 7E | 5A | |
---|---|---|---|
RGB | 151 | 126 | 90 |
HSL | 35° | 25.31% | 47.25% |
HSB/HSV | 35° | 40.40% | 59.22% |
CMYK | 0.00% | 16.56% | 40.40% |
40.78% |
HEX | 97 | 7E | 5A |
Decimal | 151 | 126 | 90 |
Binary | 10010111 | 1111110 | 1011010 |
Octal | 227 | 176 | 132 |
Examples of css and html codes for elements with #977E5A color. Also use rgb(151,126,90) instead hex code.
.myTextColor { color: #977E5A; }
<p style="color:#977E5A">This sample text font color is #977E5A.</p>
This text font color is #977E5A.
.myBgColor { background-color: #977E5A; }
<div style="background-color:#977E5A">Inner text</div>
This div background color is #977E5A.
.myBorderColor { border: 1px solid #977E5A; }
<div style="border:3px solid #977E5A">Div</div>
This div border color is #977E5A.
.myOpacity80 { color: #977E5A; opacity: 0.8; }
<p style="color:#977E5A;opacity:0.8;">80%</p>
Text with #977E5A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #977E5A;}
<p style="text-shadow: 3px 3px 1px #977E5A">Text here.</p>
This text has shadow with #977E5A color.
.textShadow {text-shadow: 3px 3px 1px #977E5A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #977E5A, 5px 5px 20px red">Text here.</p>
This text has shadow with #977E5A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#977E5A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#977E5A, Direction=45, Strength=4)">Text</p>
This text has shadow with #977E5A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #977E5A; -webkit-box-shadow: 1px 1px 3px 2px #977E5A; box-shadow: 1px 1px 3px 2px #977E5A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #977E5A; -webkit-box-shadow: 1px 1px 3px 2px #977E5A; box-shadow:1px 1px 3px 2px #977E5A;">
Div content here</div>
This text has color #977E5A on black background.
This text has color #977E5A on white background.
This text has black color on #977E5A background.
This text has white color on #977E5A background.