HEX: #89C395
RGB: (137,195,149)
#89C395 contains red, green and blue colors in about the same proportion. Web safe color of #89C395 is #99CC99 (or #9C9).
#89C395 color RGB value is (137,195,149).
RGB: (137,195,149) (54%,76%,58%)
R 137 of 255 = 54%
G 195 of 255 = 76%
B 149 of 255 = 58%
R + G + B ~ 63%. #89C395 is quite light color.
R + G + B =
137 + 195 + 149 = 481 (100%)
R 137 of 481 ~ 28.48%
G 195 of 481 ~ 40.54%
B 149 of 481 ~ 30.98%
#89C395 color CMYK value is (30,0,24,24).
CMYK: (30,0,24,24) C30M0Y24K24 (30%,0%,24%,24%) (0.30/0.00/0.24/0.24)
89 | C3 | 95 | |
---|---|---|---|
RGB | 137 | 195 | 149 |
HSL | 132° | 32.58% | 65.10% |
HSB/HSV | 132° | 29.74% | 76.47% |
CMYK | 29.74% | 0.00% | 23.59% |
23.53% |
HEX | 89 | C3 | 95 |
Decimal | 137 | 195 | 149 |
Binary | 10001001 | 11000011 | 10010101 |
Octal | 211 | 303 | 225 |
Examples of css and html codes for elements with #89C395 color. Also use rgb(137,195,149) instead hex code.
.myTextColor { color: #89C395; }
<p style="color:#89C395">This sample text font color is #89C395.</p>
This text font color is #89C395.
.myBgColor { background-color: #89C395; }
<div style="background-color:#89C395">Inner text</div>
This div background color is #89C395.
.myBorderColor { border: 1px solid #89C395; }
<div style="border:3px solid #89C395">Div</div>
This div border color is #89C395.
.myOpacity80 { color: #89C395; opacity: 0.8; }
<p style="color:#89C395;opacity:0.8;">80%</p>
Text with #89C395 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #89C395;}
<p style="text-shadow: 3px 3px 1px #89C395">Text here.</p>
This text has shadow with #89C395 color.
.textShadow {text-shadow: 3px 3px 1px #89C395, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #89C395, 5px 5px 20px red">Text here.</p>
This text has shadow with #89C395 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#89C395, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#89C395, Direction=45, Strength=4)">Text</p>
This text has shadow with #89C395 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #89C395; -webkit-box-shadow: 1px 1px 3px 2px #89C395; box-shadow: 1px 1px 3px 2px #89C395; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #89C395; -webkit-box-shadow: 1px 1px 3px 2px #89C395; box-shadow:1px 1px 3px 2px #89C395;">
Div content here</div>
This text has color #89C395 on black background.
This text has color #89C395 on white background.
This text has black color on #89C395 background.
This text has white color on #89C395 background.