HEX: #95BD79
RGB: (149,189,121)
#95BD79 contains mainly red and green colors. Web safe color of #95BD79 is #99CC66 (or #9C6).
#95BD79 color RGB value is (149,189,121).
RGB: (149,189,121) (58%,74%,47%)
R 149 of 255 = 58%
G 189 of 255 = 74%
B 121 of 255 = 47%
R + G + B ~ 60%. #95BD79 is middle color (not dark and not light).
R + G + B =
149 + 189 + 121 = 459 (100%)
R 149 of 459 ~ 32.46%
G 189 of 459 ~ 41.18%
B 121 of 459 ~ 26.36%
#95BD79 color CMYK value is (21,0,36,26).
CMYK: (21,0,36,26) C21M0Y36K26 (21%,0%,36%,26%) (0.21/0.00/0.36/0.26)
95 | BD | 79 | |
---|---|---|---|
RGB | 149 | 189 | 121 |
HSL | 95° | 34.00% | 60.78% |
HSB/HSV | 95° | 35.98% | 74.12% |
CMYK | 21.16% | 0.00% | 35.98% |
25.88% |
HEX | 95 | BD | 79 |
Decimal | 149 | 189 | 121 |
Binary | 10010101 | 10111101 | 1111001 |
Octal | 225 | 275 | 171 |
Examples of css and html codes for elements with #95BD79 color. Also use rgb(149,189,121) instead hex code.
.myTextColor { color: #95BD79; }
<p style="color:#95BD79">This sample text font color is #95BD79.</p>
This text font color is #95BD79.
.myBgColor { background-color: #95BD79; }
<div style="background-color:#95BD79">Inner text</div>
This div background color is #95BD79.
.myBorderColor { border: 1px solid #95BD79; }
<div style="border:3px solid #95BD79">Div</div>
This div border color is #95BD79.
.myOpacity80 { color: #95BD79; opacity: 0.8; }
<p style="color:#95BD79;opacity:0.8;">80%</p>
Text with #95BD79 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95BD79;}
<p style="text-shadow: 3px 3px 1px #95BD79">Text here.</p>
This text has shadow with #95BD79 color.
.textShadow {text-shadow: 3px 3px 1px #95BD79, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95BD79, 5px 5px 20px red">Text here.</p>
This text has shadow with #95BD79 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95BD79, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95BD79, Direction=45, Strength=4)">Text</p>
This text has shadow with #95BD79 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95BD79; -webkit-box-shadow: 1px 1px 3px 2px #95BD79; box-shadow: 1px 1px 3px 2px #95BD79; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95BD79; -webkit-box-shadow: 1px 1px 3px 2px #95BD79; box-shadow:1px 1px 3px 2px #95BD79;">
Div content here</div>
This text has color #95BD79 on black background.
This text has color #95BD79 on white background.
This text has black color on #95BD79 background.
This text has white color on #95BD79 background.