HEX: #88997A
RGB: (136,153,122)
#88997A contains red, green and blue colors in about the same proportion. Web safe color of #88997A is #999966 (or #996).
#88997A color RGB value is (136,153,122).
RGB: (136,153,122) (53%,60%,48%)
R 136 of 255 = 53%
G 153 of 255 = 60%
B 122 of 255 = 48%
R + G + B ~ 54%. #88997A is middle color (not dark and not light).
R + G + B =
136 + 153 + 122 = 411 (100%)
R 136 of 411 ~ 33.09%
G 153 of 411 ~ 37.23%
B 122 of 411 ~ 29.68%
#88997A color CMYK value is (11,0,20,40).
CMYK: (11,0,20,40) C11M0Y20K40 (11%,0%,20%,40%) (0.11/0.00/0.20/0.40)
88 | 99 | 7A | |
---|---|---|---|
RGB | 136 | 153 | 122 |
HSL | 93° | 13.19% | 53.92% |
HSB/HSV | 93° | 20.26% | 60.00% |
CMYK | 11.11% | 0.00% | 20.26% |
40.00% |
HEX | 88 | 99 | 7A |
Decimal | 136 | 153 | 122 |
Binary | 10001000 | 10011001 | 1111010 |
Octal | 210 | 231 | 172 |
Examples of css and html codes for elements with #88997A color. Also use rgb(136,153,122) instead hex code.
.myTextColor { color: #88997A; }
<p style="color:#88997A">This sample text font color is #88997A.</p>
This text font color is #88997A.
.myBgColor { background-color: #88997A; }
<div style="background-color:#88997A">Inner text</div>
This div background color is #88997A.
.myBorderColor { border: 1px solid #88997A; }
<div style="border:3px solid #88997A">Div</div>
This div border color is #88997A.
.myOpacity80 { color: #88997A; opacity: 0.8; }
<p style="color:#88997A;opacity:0.8;">80%</p>
Text with #88997A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88997A;}
<p style="text-shadow: 3px 3px 1px #88997A">Text here.</p>
This text has shadow with #88997A color.
.textShadow {text-shadow: 3px 3px 1px #88997A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88997A, 5px 5px 20px red">Text here.</p>
This text has shadow with #88997A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88997A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88997A, Direction=45, Strength=4)">Text</p>
This text has shadow with #88997A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88997A; -webkit-box-shadow: 1px 1px 3px 2px #88997A; box-shadow: 1px 1px 3px 2px #88997A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88997A; -webkit-box-shadow: 1px 1px 3px 2px #88997A; box-shadow:1px 1px 3px 2px #88997A;">
Div content here</div>
This text has color #88997A on black background.
This text has color #88997A on white background.
This text has black color on #88997A background.
This text has white color on #88997A background.