HEX: #88D598
RGB: (136,213,152)
#88D598 contains mainly green color. Web safe color of #88D598 is #99CC99 (or #9C9).
#88D598 color RGB value is (136,213,152).
RGB: (136,213,152) (53%,84%,60%)
R 136 of 255 = 53%
G 213 of 255 = 84%
B 152 of 255 = 60%
R + G + B ~ 66%. #88D598 is quite light color.
R + G + B =
136 + 213 + 152 = 501 (100%)
R 136 of 501 ~ 27.15%
G 213 of 501 ~ 42.51%
B 152 of 501 ~ 30.34%
#88D598 color CMYK value is (36,0,29,16).
CMYK: (36,0,29,16) C36M0Y29K16 (36%,0%,29%,16%) (0.36/0.00/0.29/0.16)
88 | D5 | 98 | |
---|---|---|---|
RGB | 136 | 213 | 152 |
HSL | 132° | 47.83% | 68.43% |
HSB/HSV | 132° | 36.15% | 83.53% |
CMYK | 36.15% | 0.00% | 28.64% |
16.47% |
HEX | 88 | D5 | 98 |
Decimal | 136 | 213 | 152 |
Binary | 10001000 | 11010101 | 10011000 |
Octal | 210 | 325 | 230 |
Examples of css and html codes for elements with #88D598 color. Also use rgb(136,213,152) instead hex code.
.myTextColor { color: #88D598; }
<p style="color:#88D598">This sample text font color is #88D598.</p>
This text font color is #88D598.
.myBgColor { background-color: #88D598; }
<div style="background-color:#88D598">Inner text</div>
This div background color is #88D598.
.myBorderColor { border: 1px solid #88D598; }
<div style="border:3px solid #88D598">Div</div>
This div border color is #88D598.
.myOpacity80 { color: #88D598; opacity: 0.8; }
<p style="color:#88D598;opacity:0.8;">80%</p>
Text with #88D598 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #88D598;}
<p style="text-shadow: 3px 3px 1px #88D598">Text here.</p>
This text has shadow with #88D598 color.
.textShadow {text-shadow: 3px 3px 1px #88D598, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #88D598, 5px 5px 20px red">Text here.</p>
This text has shadow with #88D598 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#88D598, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#88D598, Direction=45, Strength=4)">Text</p>
This text has shadow with #88D598 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #88D598; -webkit-box-shadow: 1px 1px 3px 2px #88D598; box-shadow: 1px 1px 3px 2px #88D598; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #88D598; -webkit-box-shadow: 1px 1px 3px 2px #88D598; box-shadow:1px 1px 3px 2px #88D598;">
Div content here</div>
This text has color #88D598 on black background.
This text has color #88D598 on white background.
This text has black color on #88D598 background.
This text has white color on #88D598 background.