HEX: #88DC71
RGB: (136,220,113)
#88DC71 contains mainly green color. Web safe color of #88DC71 is #99CC66 (or #9C6).
#88DC71 color RGB value is (136,220,113).
RGB: (136,220,113) (53%,86%,44%)
R 136 of 255 = 53%
G 220 of 255 = 86%
B 113 of 255 = 44%
R + G + B ~ 61%. #88DC71 is quite light color.
R + G + B =
136 + 220 + 113 = 469 (100%)
R 136 of 469 ~ 29%
G 220 of 469 ~ 46.91%
B 113 of 469 ~ 24.09%
#88DC71 color CMYK value is (38,0,49,14).
CMYK: (38,0,49,14) C38M0Y49K14 (38%,0%,49%,14%) (0.38/0.00/0.49/0.14)
88 | DC | 71 | |
---|---|---|---|
RGB | 136 | 220 | 113 |
HSL | 107° | 60.45% | 65.29% |
HSB/HSV | 107° | 48.64% | 86.27% |
CMYK | 38.18% | 0.00% | 48.64% |
13.73% |
HEX | 88 | DC | 71 |
Decimal | 136 | 220 | 113 |
Binary | 10001000 | 11011100 | 1110001 |
Octal | 210 | 334 | 161 |
Examples of css and html codes for elements with #88DC71 color. Also use rgb(136,220,113) instead hex code.
.myTextColor { color: #88DC71; }
<p style="color:#88DC71">This sample text font color is #88DC71.</p>
This text font color is #88DC71.
.myBgColor { background-color: #88DC71; }
<div style="background-color:#88DC71">Inner text</div>
This div background color is #88DC71.
.myBorderColor { border: 1px solid #88DC71; }
<div style="border:3px solid #88DC71">Div</div>
This div border color is #88DC71.
.myOpacity80 { color: #88DC71; opacity: 0.8; }
<p style="color:#88DC71;opacity:0.8;">80%</p>
Text with #88DC71 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88DC71;}
<p style="text-shadow: 3px 3px 1px #88DC71">Text here.</p>
This text has shadow with #88DC71 color.
.textShadow {text-shadow: 3px 3px 1px #88DC71, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88DC71, 5px 5px 20px red">Text here.</p>
This text has shadow with #88DC71 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88DC71, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88DC71, Direction=45, Strength=4)">Text</p>
This text has shadow with #88DC71 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88DC71; -webkit-box-shadow: 1px 1px 3px 2px #88DC71; box-shadow: 1px 1px 3px 2px #88DC71; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88DC71; -webkit-box-shadow: 1px 1px 3px 2px #88DC71; box-shadow:1px 1px 3px 2px #88DC71;">
Div content here</div>
This text has color #88DC71 on black background.
This text has color #88DC71 on white background.
This text has black color on #88DC71 background.
This text has white color on #88DC71 background.