HEX: #95B571
RGB: (149,181,113)
#95B571 contains mainly red and green colors. Web safe color of #95B571 is #99CC66 (or #9C6).
#95B571 color RGB value is (149,181,113).
RGB: (149,181,113) (58%,71%,44%)
R 149 of 255 = 58%
G 181 of 255 = 71%
B 113 of 255 = 44%
R + G + B ~ 58%. #95B571 is middle color (not dark and not light).
R + G + B =
149 + 181 + 113 = 443 (100%)
R 149 of 443 ~ 33.63%
G 181 of 443 ~ 40.86%
B 113 of 443 ~ 25.51%
#95B571 color CMYK value is (18,0,38,29).
CMYK: (18,0,38,29) C18M0Y38K29 (18%,0%,38%,29%) (0.18/0.00/0.38/0.29)
95 | B5 | 71 | |
---|---|---|---|
RGB | 149 | 181 | 113 |
HSL | 88° | 31.48% | 57.65% |
HSB/HSV | 88° | 37.57% | 70.98% |
CMYK | 17.68% | 0.00% | 37.57% |
29.02% |
HEX | 95 | B5 | 71 |
Decimal | 149 | 181 | 113 |
Binary | 10010101 | 10110101 | 1110001 |
Octal | 225 | 265 | 161 |
Examples of css and html codes for elements with #95B571 color. Also use rgb(149,181,113) instead hex code.
.myTextColor { color: #95B571; }
<p style="color:#95B571">This sample text font color is #95B571.</p>
This text font color is #95B571.
.myBgColor { background-color: #95B571; }
<div style="background-color:#95B571">Inner text</div>
This div background color is #95B571.
.myBorderColor { border: 1px solid #95B571; }
<div style="border:3px solid #95B571">Div</div>
This div border color is #95B571.
.myOpacity80 { color: #95B571; opacity: 0.8; }
<p style="color:#95B571;opacity:0.8;">80%</p>
Text with #95B571 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95B571;}
<p style="text-shadow: 3px 3px 1px #95B571">Text here.</p>
This text has shadow with #95B571 color.
.textShadow {text-shadow: 3px 3px 1px #95B571, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95B571, 5px 5px 20px red">Text here.</p>
This text has shadow with #95B571 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95B571, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95B571, Direction=45, Strength=4)">Text</p>
This text has shadow with #95B571 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95B571; -webkit-box-shadow: 1px 1px 3px 2px #95B571; box-shadow: 1px 1px 3px 2px #95B571; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95B571; -webkit-box-shadow: 1px 1px 3px 2px #95B571; box-shadow:1px 1px 3px 2px #95B571;">
Div content here</div>
This text has color #95B571 on black background.
This text has color #95B571 on white background.
This text has black color on #95B571 background.
This text has white color on #95B571 background.