HEX: #C5E994
RGB: (197,233,148)
#C5E994 contains mainly red and green colors. Web safe color of #C5E994 is #CCFF99 (or #CF9).
#C5E994 color RGB value is (197,233,148).
RGB: (197,233,148) (77%,91%,58%)
R 197 of 255 = 77%
G 233 of 255 = 91%
B 148 of 255 = 58%
R + G + B ~ 75%. #C5E994 is quite light color.
R + G + B =
197 + 233 + 148 = 578 (100%)
R 197 of 578 ~ 34.08%
G 233 of 578 ~ 40.31%
B 148 of 578 ~ 25.61%
#C5E994 color CMYK value is (15,0,36,9).
CMYK: (15,0,36,9) C15M0Y36K9 (15%,0%,36%,9%) (0.15/0.00/0.36/0.09)
C5 | E9 | 94 | |
---|---|---|---|
RGB | 197 | 233 | 148 |
HSL | 85° | 65.89% | 74.71% |
HSB/HSV | 85° | 36.48% | 91.37% |
CMYK | 15.45% | 0.00% | 36.48% |
8.63% |
HEX | C5 | E9 | 94 |
Decimal | 197 | 233 | 148 |
Binary | 11000101 | 11101001 | 10010100 |
Octal | 305 | 351 | 224 |
Examples of css and html codes for elements with #C5E994 color. Also use rgb(197,233,148) instead hex code.
.myTextColor { color: #C5E994; }
<p style="color:#C5E994">This sample text font color is #C5E994.</p>
This text font color is #C5E994.
.myBgColor { background-color: #C5E994; }
<div style="background-color:#C5E994">Inner text</div>
This div background color is #C5E994.
.myBorderColor { border: 1px solid #C5E994; }
<div style="border:3px solid #C5E994">Div</div>
This div border color is #C5E994.
.myOpacity80 { color: #C5E994; opacity: 0.8; }
<p style="color:#C5E994;opacity:0.8;">80%</p>
Text with #C5E994 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5E994;}
<p style="text-shadow: 3px 3px 1px #C5E994">Text here.</p>
This text has shadow with #C5E994 color.
.textShadow {text-shadow: 3px 3px 1px #C5E994, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5E994, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5E994 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5E994, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5E994, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5E994 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5E994; -webkit-box-shadow: 1px 1px 3px 2px #C5E994; box-shadow: 1px 1px 3px 2px #C5E994; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5E994; -webkit-box-shadow: 1px 1px 3px 2px #C5E994; box-shadow:1px 1px 3px 2px #C5E994;">
Div content here</div>
This text has color #C5E994 on black background.
This text has color #C5E994 on white background.
This text has black color on #C5E994 background.
This text has white color on #C5E994 background.