HEX: #89CC80
RGB: (137,204,128)
#89CC80 contains mainly green color. Web safe color of #89CC80 is #99CC66 (or #9C6).
#89CC80 color RGB value is (137,204,128).
RGB: (137,204,128) (54%,80%,50%)
R 137 of 255 = 54%
G 204 of 255 = 80%
B 128 of 255 = 50%
R + G + B ~ 61%. #89CC80 is quite light color.
R + G + B =
137 + 204 + 128 = 469 (100%)
R 137 of 469 ~ 29.21%
G 204 of 469 ~ 43.5%
B 128 of 469 ~ 27.29%
#89CC80 color CMYK value is (33,0,37,20).
CMYK: (33,0,37,20) C33M0Y37K20 (33%,0%,37%,20%) (0.33/0.00/0.37/0.20)
89 | CC | 80 | |
---|---|---|---|
RGB | 137 | 204 | 128 |
HSL | 113° | 42.70% | 65.10% |
HSB/HSV | 113° | 37.25% | 80.00% |
CMYK | 32.84% | 0.00% | 37.25% |
20.00% |
HEX | 89 | CC | 80 |
Decimal | 137 | 204 | 128 |
Binary | 10001001 | 11001100 | 10000000 |
Octal | 211 | 314 | 200 |
Examples of css and html codes for elements with #89CC80 color. Also use rgb(137,204,128) instead hex code.
.myTextColor { color: #89CC80; }
<p style="color:#89CC80">This sample text font color is #89CC80.</p>
This text font color is #89CC80.
.myBgColor { background-color: #89CC80; }
<div style="background-color:#89CC80">Inner text</div>
This div background color is #89CC80.
.myBorderColor { border: 1px solid #89CC80; }
<div style="border:3px solid #89CC80">Div</div>
This div border color is #89CC80.
.myOpacity80 { color: #89CC80; opacity: 0.8; }
<p style="color:#89CC80;opacity:0.8;">80%</p>
Text with #89CC80 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #89CC80;}
<p style="text-shadow: 3px 3px 1px #89CC80">Text here.</p>
This text has shadow with #89CC80 color.
.textShadow {text-shadow: 3px 3px 1px #89CC80, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #89CC80, 5px 5px 20px red">Text here.</p>
This text has shadow with #89CC80 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#89CC80, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#89CC80, Direction=45, Strength=4)">Text</p>
This text has shadow with #89CC80 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #89CC80; -webkit-box-shadow: 1px 1px 3px 2px #89CC80; box-shadow: 1px 1px 3px 2px #89CC80; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #89CC80; -webkit-box-shadow: 1px 1px 3px 2px #89CC80; box-shadow:1px 1px 3px 2px #89CC80;">
Div content here</div>
This text has color #89CC80 on black background.
This text has color #89CC80 on white background.
This text has black color on #89CC80 background.
This text has white color on #89CC80 background.