HEX: #88AF6D
RGB: (136,175,109)
#88AF6D contains mainly red and green colors. Web safe color of #88AF6D is #999966 (or #996).
#88AF6D color RGB value is (136,175,109).
RGB: (136,175,109) (53%,69%,43%)
R 136 of 255 = 53%
G 175 of 255 = 69%
B 109 of 255 = 43%
R + G + B ~ 55%. #88AF6D is middle color (not dark and not light).
R + G + B =
136 + 175 + 109 = 420 (100%)
R 136 of 420 ~ 32.38%
G 175 of 420 ~ 41.67%
B 109 of 420 ~ 25.95%
#88AF6D color CMYK value is (22,0,38,31).
CMYK: (22,0,38,31) C22M0Y38K31 (22%,0%,38%,31%) (0.22/0.00/0.38/0.31)
88 | AF | 6D | |
---|---|---|---|
RGB | 136 | 175 | 109 |
HSL | 95° | 29.20% | 55.69% |
HSB/HSV | 95° | 37.71% | 68.63% |
CMYK | 22.29% | 0.00% | 37.71% |
31.37% |
HEX | 88 | AF | 6D |
Decimal | 136 | 175 | 109 |
Binary | 10001000 | 10101111 | 1101101 |
Octal | 210 | 257 | 155 |
Examples of css and html codes for elements with #88AF6D color. Also use rgb(136,175,109) instead hex code.
.myTextColor { color: #88AF6D; }
<p style="color:#88AF6D">This sample text font color is #88AF6D.</p>
This text font color is #88AF6D.
.myBgColor { background-color: #88AF6D; }
<div style="background-color:#88AF6D">Inner text</div>
This div background color is #88AF6D.
.myBorderColor { border: 1px solid #88AF6D; }
<div style="border:3px solid #88AF6D">Div</div>
This div border color is #88AF6D.
.myOpacity80 { color: #88AF6D; opacity: 0.8; }
<p style="color:#88AF6D;opacity:0.8;">80%</p>
Text with #88AF6D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88AF6D;}
<p style="text-shadow: 3px 3px 1px #88AF6D">Text here.</p>
This text has shadow with #88AF6D color.
.textShadow {text-shadow: 3px 3px 1px #88AF6D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88AF6D, 5px 5px 20px red">Text here.</p>
This text has shadow with #88AF6D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88AF6D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88AF6D, Direction=45, Strength=4)">Text</p>
This text has shadow with #88AF6D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88AF6D; -webkit-box-shadow: 1px 1px 3px 2px #88AF6D; box-shadow: 1px 1px 3px 2px #88AF6D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88AF6D; -webkit-box-shadow: 1px 1px 3px 2px #88AF6D; box-shadow:1px 1px 3px 2px #88AF6D;">
Div content here</div>
This text has color #88AF6D on black background.
This text has color #88AF6D on white background.
This text has black color on #88AF6D background.
This text has white color on #88AF6D background.