HEX: #88AA53
RGB: (136,170,83)
#88AA53 contains mainly red and green colors. Web safe color of #88AA53 is #999966 (or #996).
#88AA53 color RGB value is (136,170,83).
RGB: (136,170,83) (53%,67%,33%)
R 136 of 255 = 53%
G 170 of 255 = 67%
B 83 of 255 = 33%
R + G + B ~ 51%. #88AA53 is middle color (not dark and not light).
R + G + B =
136 + 170 + 83 = 389 (100%)
R 136 of 389 ~ 34.96%
G 170 of 389 ~ 43.7%
B 83 of 389 ~ 21.34%
#88AA53 color CMYK value is (20,0,51,33).
CMYK: (20,0,51,33) C20M0Y51K33 (20%,0%,51%,33%) (0.20/0.00/0.51/0.33)
88 | AA | 53 | |
---|---|---|---|
RGB | 136 | 170 | 83 |
HSL | 83° | 34.39% | 49.61% |
HSB/HSV | 83° | 51.18% | 66.67% |
CMYK | 20.00% | 0.00% | 51.18% |
33.33% |
HEX | 88 | AA | 53 |
Decimal | 136 | 170 | 83 |
Binary | 10001000 | 10101010 | 1010011 |
Octal | 210 | 252 | 123 |
Examples of css and html codes for elements with #88AA53 color. Also use rgb(136,170,83) instead hex code.
.myTextColor { color: #88AA53; }
<p style="color:#88AA53">This sample text font color is #88AA53.</p>
This text font color is #88AA53.
.myBgColor { background-color: #88AA53; }
<div style="background-color:#88AA53">Inner text</div>
This div background color is #88AA53.
.myBorderColor { border: 1px solid #88AA53; }
<div style="border:3px solid #88AA53">Div</div>
This div border color is #88AA53.
.myOpacity80 { color: #88AA53; opacity: 0.8; }
<p style="color:#88AA53;opacity:0.8;">80%</p>
Text with #88AA53 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88AA53;}
<p style="text-shadow: 3px 3px 1px #88AA53">Text here.</p>
This text has shadow with #88AA53 color.
.textShadow {text-shadow: 3px 3px 1px #88AA53, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88AA53, 5px 5px 20px red">Text here.</p>
This text has shadow with #88AA53 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88AA53, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88AA53, Direction=45, Strength=4)">Text</p>
This text has shadow with #88AA53 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88AA53; -webkit-box-shadow: 1px 1px 3px 2px #88AA53; box-shadow: 1px 1px 3px 2px #88AA53; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88AA53; -webkit-box-shadow: 1px 1px 3px 2px #88AA53; box-shadow:1px 1px 3px 2px #88AA53;">
Div content here</div>
This text has color #88AA53 on black background.
This text has color #88AA53 on white background.
This text has black color on #88AA53 background.
This text has white color on #88AA53 background.