HEX: #88F552
RGB: (136,245,82)
#88F552 contains mainly green color. Web safe color of #88F552 is #99FF66 (or #9F6).
#88F552 color RGB value is (136,245,82).
RGB: (136,245,82) (53%,96%,32%)
R 136 of 255 = 53%
G 245 of 255 = 96%
B 82 of 255 = 32%
R + G + B ~ 60%. #88F552 is middle color (not dark and not light).
R + G + B =
136 + 245 + 82 = 463 (100%)
R 136 of 463 ~ 29.37%
G 245 of 463 ~ 52.92%
B 82 of 463 ~ 17.71%
#88F552 color CMYK value is (44,0,67,4).
CMYK: (44,0,67,4) C44M0Y67K4 (44%,0%,67%,4%) (0.44/0.00/0.67/0.04)
88 | F5 | 52 | |
---|---|---|---|
RGB | 136 | 245 | 82 |
HSL | 100° | 89.07% | 64.12% |
HSB/HSV | 100° | 66.53% | 96.08% |
CMYK | 44.49% | 0.00% | 66.53% |
3.92% |
HEX | 88 | F5 | 52 |
Decimal | 136 | 245 | 82 |
Binary | 10001000 | 11110101 | 1010010 |
Octal | 210 | 365 | 122 |
Examples of css and html codes for elements with #88F552 color. Also use rgb(136,245,82) instead hex code.
.myTextColor { color: #88F552; }
<p style="color:#88F552">This sample text font color is #88F552.</p>
This text font color is #88F552.
.myBgColor { background-color: #88F552; }
<div style="background-color:#88F552">Inner text</div>
This div background color is #88F552.
.myBorderColor { border: 1px solid #88F552; }
<div style="border:3px solid #88F552">Div</div>
This div border color is #88F552.
.myOpacity80 { color: #88F552; opacity: 0.8; }
<p style="color:#88F552;opacity:0.8;">80%</p>
Text with #88F552 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88F552;}
<p style="text-shadow: 3px 3px 1px #88F552">Text here.</p>
This text has shadow with #88F552 color.
.textShadow {text-shadow: 3px 3px 1px #88F552, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88F552, 5px 5px 20px red">Text here.</p>
This text has shadow with #88F552 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88F552, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88F552, Direction=45, Strength=4)">Text</p>
This text has shadow with #88F552 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88F552; -webkit-box-shadow: 1px 1px 3px 2px #88F552; box-shadow: 1px 1px 3px 2px #88F552; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88F552; -webkit-box-shadow: 1px 1px 3px 2px #88F552; box-shadow:1px 1px 3px 2px #88F552;">
Div content here</div>
This text has color #88F552 on black background.
This text has color #88F552 on white background.
This text has black color on #88F552 background.
This text has white color on #88F552 background.