HEX: #95C664
RGB: (149,198,100)
#95C664 contains mainly red and green colors. Web safe color of #95C664 is #99CC66 (or #9C6).
#95C664 color RGB value is (149,198,100).
RGB: (149,198,100) (58%,78%,39%)
R 149 of 255 = 58%
G 198 of 255 = 78%
B 100 of 255 = 39%
R + G + B ~ 58%. #95C664 is middle color (not dark and not light).
R + G + B =
149 + 198 + 100 = 447 (100%)
R 149 of 447 ~ 33.33%
G 198 of 447 ~ 44.3%
B 100 of 447 ~ 22.37%
#95C664 color CMYK value is (25,0,49,22).
CMYK: (25,0,49,22) C25M0Y49K22 (25%,0%,49%,22%) (0.25/0.00/0.49/0.22)
95 | C6 | 64 | |
---|---|---|---|
RGB | 149 | 198 | 100 |
HSL | 90° | 46.23% | 58.43% |
HSB/HSV | 90° | 49.49% | 77.65% |
CMYK | 24.75% | 0.00% | 49.49% |
22.35% |
HEX | 95 | C6 | 64 |
Decimal | 149 | 198 | 100 |
Binary | 10010101 | 11000110 | 1100100 |
Octal | 225 | 306 | 144 |
Examples of css and html codes for elements with #95C664 color. Also use rgb(149,198,100) instead hex code.
.myTextColor { color: #95C664; }
<p style="color:#95C664">This sample text font color is #95C664.</p>
This text font color is #95C664.
.myBgColor { background-color: #95C664; }
<div style="background-color:#95C664">Inner text</div>
This div background color is #95C664.
.myBorderColor { border: 1px solid #95C664; }
<div style="border:3px solid #95C664">Div</div>
This div border color is #95C664.
.myOpacity80 { color: #95C664; opacity: 0.8; }
<p style="color:#95C664;opacity:0.8;">80%</p>
Text with #95C664 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #95C664;}
<p style="text-shadow: 3px 3px 1px #95C664">Text here.</p>
This text has shadow with #95C664 color.
.textShadow {text-shadow: 3px 3px 1px #95C664, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #95C664, 5px 5px 20px red">Text here.</p>
This text has shadow with #95C664 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#95C664, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#95C664, Direction=45, Strength=4)">Text</p>
This text has shadow with #95C664 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #95C664; -webkit-box-shadow: 1px 1px 3px 2px #95C664; box-shadow: 1px 1px 3px 2px #95C664; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #95C664; -webkit-box-shadow: 1px 1px 3px 2px #95C664; box-shadow:1px 1px 3px 2px #95C664;">
Div content here</div>
This text has color #95C664 on black background.
This text has color #95C664 on white background.
This text has black color on #95C664 background.
This text has white color on #95C664 background.