HEX: #88C46C
RGB: (136,196,108)
#88C46C contains mainly green color. Web safe color of #88C46C is #99CC66 (or #9C6).
#88C46C color RGB value is (136,196,108).
RGB: (136,196,108) (53%,77%,42%)
R 136 of 255 = 53%
G 196 of 255 = 77%
B 108 of 255 = 42%
R + G + B ~ 57%. #88C46C is middle color (not dark and not light).
R + G + B =
136 + 196 + 108 = 440 (100%)
R 136 of 440 ~ 30.91%
G 196 of 440 ~ 44.55%
B 108 of 440 ~ 24.55%
#88C46C color CMYK value is (31,0,45,23).
CMYK: (31,0,45,23) C31M0Y45K23 (31%,0%,45%,23%) (0.31/0.00/0.45/0.23)
88 | C4 | 6C | |
---|---|---|---|
RGB | 136 | 196 | 108 |
HSL | 101° | 42.72% | 59.61% |
HSB/HSV | 101° | 44.90% | 76.86% |
CMYK | 30.61% | 0.00% | 44.90% |
23.14% |
HEX | 88 | C4 | 6C |
Decimal | 136 | 196 | 108 |
Binary | 10001000 | 11000100 | 1101100 |
Octal | 210 | 304 | 154 |
Examples of css and html codes for elements with #88C46C color. Also use rgb(136,196,108) instead hex code.
.myTextColor { color: #88C46C; }
<p style="color:#88C46C">This sample text font color is #88C46C.</p>
This text font color is #88C46C.
.myBgColor { background-color: #88C46C; }
<div style="background-color:#88C46C">Inner text</div>
This div background color is #88C46C.
.myBorderColor { border: 1px solid #88C46C; }
<div style="border:3px solid #88C46C">Div</div>
This div border color is #88C46C.
.myOpacity80 { color: #88C46C; opacity: 0.8; }
<p style="color:#88C46C;opacity:0.8;">80%</p>
Text with #88C46C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88C46C;}
<p style="text-shadow: 3px 3px 1px #88C46C">Text here.</p>
This text has shadow with #88C46C color.
.textShadow {text-shadow: 3px 3px 1px #88C46C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88C46C, 5px 5px 20px red">Text here.</p>
This text has shadow with #88C46C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88C46C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88C46C, Direction=45, Strength=4)">Text</p>
This text has shadow with #88C46C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88C46C; -webkit-box-shadow: 1px 1px 3px 2px #88C46C; box-shadow: 1px 1px 3px 2px #88C46C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88C46C; -webkit-box-shadow: 1px 1px 3px 2px #88C46C; box-shadow:1px 1px 3px 2px #88C46C;">
Div content here</div>
This text has color #88C46C on black background.
This text has color #88C46C on white background.
This text has black color on #88C46C background.
This text has white color on #88C46C background.