HEX: #88A55B
RGB: (136,165,91)
#88A55B contains mainly red and green colors. Web safe color of #88A55B is #999966 (or #996).
#88A55B color RGB value is (136,165,91).
RGB: (136,165,91) (53%,65%,36%)
R 136 of 255 = 53%
G 165 of 255 = 65%
B 91 of 255 = 36%
R + G + B ~ 51%. #88A55B is middle color (not dark and not light).
R + G + B =
136 + 165 + 91 = 392 (100%)
R 136 of 392 ~ 34.69%
G 165 of 392 ~ 42.09%
B 91 of 392 ~ 23.21%
#88A55B color CMYK value is (18,0,45,35).
CMYK: (18,0,45,35) C18M0Y45K35 (18%,0%,45%,35%) (0.18/0.00/0.45/0.35)
88 | A5 | 5B | |
---|---|---|---|
RGB | 136 | 165 | 91 |
HSL | 84° | 29.13% | 50.20% |
HSB/HSV | 84° | 44.85% | 64.71% |
CMYK | 17.58% | 0.00% | 44.85% |
35.29% |
HEX | 88 | A5 | 5B |
Decimal | 136 | 165 | 91 |
Binary | 10001000 | 10100101 | 1011011 |
Octal | 210 | 245 | 133 |
Examples of css and html codes for elements with #88A55B color. Also use rgb(136,165,91) instead hex code.
.myTextColor { color: #88A55B; }
<p style="color:#88A55B">This sample text font color is #88A55B.</p>
This text font color is #88A55B.
.myBgColor { background-color: #88A55B; }
<div style="background-color:#88A55B">Inner text</div>
This div background color is #88A55B.
.myBorderColor { border: 1px solid #88A55B; }
<div style="border:3px solid #88A55B">Div</div>
This div border color is #88A55B.
.myOpacity80 { color: #88A55B; opacity: 0.8; }
<p style="color:#88A55B;opacity:0.8;">80%</p>
Text with #88A55B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88A55B;}
<p style="text-shadow: 3px 3px 1px #88A55B">Text here.</p>
This text has shadow with #88A55B color.
.textShadow {text-shadow: 3px 3px 1px #88A55B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88A55B, 5px 5px 20px red">Text here.</p>
This text has shadow with #88A55B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88A55B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88A55B, Direction=45, Strength=4)">Text</p>
This text has shadow with #88A55B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88A55B; -webkit-box-shadow: 1px 1px 3px 2px #88A55B; box-shadow: 1px 1px 3px 2px #88A55B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88A55B; -webkit-box-shadow: 1px 1px 3px 2px #88A55B; box-shadow:1px 1px 3px 2px #88A55B;">
Div content here</div>
This text has color #88A55B on black background.
This text has color #88A55B on white background.
This text has black color on #88A55B background.
This text has white color on #88A55B background.