HEX: #C2D495
RGB: (194,212,149)
#C2D495 contains mainly red and green colors. Web safe color of #C2D495 is #CCCC99 (or #CC9).
#C2D495 color RGB value is (194,212,149).
RGB: (194,212,149) (76%,83%,58%)
R 194 of 255 = 76%
G 212 of 255 = 83%
B 149 of 255 = 58%
R + G + B ~ 72%. #C2D495 is quite light color.
R + G + B =
194 + 212 + 149 = 555 (100%)
R 194 of 555 ~ 34.95%
G 212 of 555 ~ 38.2%
B 149 of 555 ~ 26.85%
#C2D495 color CMYK value is (8,0,30,17).
CMYK: (8,0,30,17) C8M0Y30K17 (8%,0%,30%,17%) (0.08/0.00/0.30/0.17)
C2 | D4 | 95 | |
---|---|---|---|
RGB | 194 | 212 | 149 |
HSL | 77° | 42.28% | 70.78% |
HSB/HSV | 77° | 29.72% | 83.14% |
CMYK | 8.49% | 0.00% | 29.72% |
16.86% |
HEX | C2 | D4 | 95 |
Decimal | 194 | 212 | 149 |
Binary | 11000010 | 11010100 | 10010101 |
Octal | 302 | 324 | 225 |
Examples of css and html codes for elements with #C2D495 color. Also use rgb(194,212,149) instead hex code.
.myTextColor { color: #C2D495; }
<p style="color:#C2D495">This sample text font color is #C2D495.</p>
This text font color is #C2D495.
.myBgColor { background-color: #C2D495; }
<div style="background-color:#C2D495">Inner text</div>
This div background color is #C2D495.
.myBorderColor { border: 1px solid #C2D495; }
<div style="border:3px solid #C2D495">Div</div>
This div border color is #C2D495.
.myOpacity80 { color: #C2D495; opacity: 0.8; }
<p style="color:#C2D495;opacity:0.8;">80%</p>
Text with #C2D495 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C2D495;}
<p style="text-shadow: 3px 3px 1px #C2D495">Text here.</p>
This text has shadow with #C2D495 color.
.textShadow {text-shadow: 3px 3px 1px #C2D495, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C2D495, 5px 5px 20px red">Text here.</p>
This text has shadow with #C2D495 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C2D495, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C2D495, Direction=45, Strength=4)">Text</p>
This text has shadow with #C2D495 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C2D495; -webkit-box-shadow: 1px 1px 3px 2px #C2D495; box-shadow: 1px 1px 3px 2px #C2D495; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C2D495; -webkit-box-shadow: 1px 1px 3px 2px #C2D495; box-shadow:1px 1px 3px 2px #C2D495;">
Div content here</div>
This text has color #C2D495 on black background.
This text has color #C2D495 on white background.
This text has black color on #C2D495 background.
This text has white color on #C2D495 background.