HEX: #95C996
RGB: (149,201,150)
#95C996 contains red, green and blue colors in about the same proportion. Web safe color of #95C996 is #99CC99 (or #9C9).
#95C996 color RGB value is (149,201,150).
RGB: (149,201,150) (58%,79%,59%)
R 149 of 255 = 58%
G 201 of 255 = 79%
B 150 of 255 = 59%
R + G + B ~ 65%. #95C996 is quite light color.
R + G + B =
149 + 201 + 150 = 500 (100%)
R 149 of 500 ~ 29.8%
G 201 of 500 ~ 40.2%
B 150 of 500 ~ 30%
#95C996 color CMYK value is (26,0,25,21).
CMYK: (26,0,25,21) C26M0Y25K21 (26%,0%,25%,21%) (0.26/0.00/0.25/0.21)
95 | C9 | 96 | |
---|---|---|---|
RGB | 149 | 201 | 150 |
HSL | 121° | 32.50% | 68.63% |
HSB/HSV | 121° | 25.87% | 78.82% |
CMYK | 25.87% | 0.00% | 25.37% |
21.18% |
HEX | 95 | C9 | 96 |
Decimal | 149 | 201 | 150 |
Binary | 10010101 | 11001001 | 10010110 |
Octal | 225 | 311 | 226 |
Examples of css and html codes for elements with #95C996 color. Also use rgb(149,201,150) instead hex code.
.myTextColor { color: #95C996; }
<p style="color:#95C996">This sample text font color is #95C996.</p>
This text font color is #95C996.
.myBgColor { background-color: #95C996; }
<div style="background-color:#95C996">Inner text</div>
This div background color is #95C996.
.myBorderColor { border: 1px solid #95C996; }
<div style="border:3px solid #95C996">Div</div>
This div border color is #95C996.
.myOpacity80 { color: #95C996; opacity: 0.8; }
<p style="color:#95C996;opacity:0.8;">80%</p>
Text with #95C996 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95C996;}
<p style="text-shadow: 3px 3px 1px #95C996">Text here.</p>
This text has shadow with #95C996 color.
.textShadow {text-shadow: 3px 3px 1px #95C996, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95C996, 5px 5px 20px red">Text here.</p>
This text has shadow with #95C996 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95C996, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95C996, Direction=45, Strength=4)">Text</p>
This text has shadow with #95C996 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95C996; -webkit-box-shadow: 1px 1px 3px 2px #95C996; box-shadow: 1px 1px 3px 2px #95C996; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95C996; -webkit-box-shadow: 1px 1px 3px 2px #95C996; box-shadow:1px 1px 3px 2px #95C996;">
Div content here</div>
This text has color #95C996 on black background.
This text has color #95C996 on white background.
This text has black color on #95C996 background.
This text has white color on #95C996 background.