HEX: #95C561
RGB: (149,197,97)
#95C561 contains mainly red and green colors. Web safe color of #95C561 is #99CC66 (or #9C6).
#95C561 color RGB value is (149,197,97).
RGB: (149,197,97) (58%,77%,38%)
R 149 of 255 = 58%
G 197 of 255 = 77%
B 97 of 255 = 38%
R + G + B ~ 58%. #95C561 is middle color (not dark and not light).
R + G + B =
149 + 197 + 97 = 443 (100%)
R 149 of 443 ~ 33.63%
G 197 of 443 ~ 44.47%
B 97 of 443 ~ 21.9%
#95C561 color CMYK value is (24,0,51,23).
CMYK: (24,0,51,23) C24M0Y51K23 (24%,0%,51%,23%) (0.24/0.00/0.51/0.23)
95 | C5 | 61 | |
---|---|---|---|
RGB | 149 | 197 | 97 |
HSL | 89° | 46.30% | 57.65% |
HSB/HSV | 89° | 50.76% | 77.25% |
CMYK | 24.37% | 0.00% | 50.76% |
22.75% |
HEX | 95 | C5 | 61 |
Decimal | 149 | 197 | 97 |
Binary | 10010101 | 11000101 | 1100001 |
Octal | 225 | 305 | 141 |
Examples of css and html codes for elements with #95C561 color. Also use rgb(149,197,97) instead hex code.
.myTextColor { color: #95C561; }
<p style="color:#95C561">This sample text font color is #95C561.</p>
This text font color is #95C561.
.myBgColor { background-color: #95C561; }
<div style="background-color:#95C561">Inner text</div>
This div background color is #95C561.
.myBorderColor { border: 1px solid #95C561; }
<div style="border:3px solid #95C561">Div</div>
This div border color is #95C561.
.myOpacity80 { color: #95C561; opacity: 0.8; }
<p style="color:#95C561;opacity:0.8;">80%</p>
Text with #95C561 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95C561;}
<p style="text-shadow: 3px 3px 1px #95C561">Text here.</p>
This text has shadow with #95C561 color.
.textShadow {text-shadow: 3px 3px 1px #95C561, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95C561, 5px 5px 20px red">Text here.</p>
This text has shadow with #95C561 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95C561, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95C561, Direction=45, Strength=4)">Text</p>
This text has shadow with #95C561 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95C561; -webkit-box-shadow: 1px 1px 3px 2px #95C561; box-shadow: 1px 1px 3px 2px #95C561; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95C561; -webkit-box-shadow: 1px 1px 3px 2px #95C561; box-shadow:1px 1px 3px 2px #95C561;">
Div content here</div>
This text has color #95C561 on black background.
This text has color #95C561 on white background.
This text has black color on #95C561 background.
This text has white color on #95C561 background.