HEX: #C5DDAA
RGB: (197,221,170)
#C5DDAA contains red, green and blue colors in about the same proportion. Web safe color of #C5DDAA is #CCCC99 (or #CC9).
#C5DDAA color RGB value is (197,221,170).
RGB: (197,221,170) (77%,87%,67%)
R 197 of 255 = 77%
G 221 of 255 = 87%
B 170 of 255 = 67%
R + G + B ~ 77%. #C5DDAA is quite light color.
R + G + B =
197 + 221 + 170 = 588 (100%)
R 197 of 588 ~ 33.5%
G 221 of 588 ~ 37.59%
B 170 of 588 ~ 28.91%
#C5DDAA color CMYK value is (11,0,23,13).
CMYK: (11,0,23,13) C11M0Y23K13 (11%,0%,23%,13%) (0.11/0.00/0.23/0.13)
C5 | DD | AA | |
---|---|---|---|
RGB | 197 | 221 | 170 |
HSL | 88° | 42.86% | 76.67% |
HSB/HSV | 88° | 23.08% | 86.67% |
CMYK | 10.86% | 0.00% | 23.08% |
13.33% |
HEX | C5 | DD | AA |
Decimal | 197 | 221 | 170 |
Binary | 11000101 | 11011101 | 10101010 |
Octal | 305 | 335 | 252 |
Examples of css and html codes for elements with #C5DDAA color. Also use rgb(197,221,170) instead hex code.
.myTextColor { color: #C5DDAA; }
<p style="color:#C5DDAA">This sample text font color is #C5DDAA.</p>
This text font color is #C5DDAA.
.myBgColor { background-color: #C5DDAA; }
<div style="background-color:#C5DDAA">Inner text</div>
This div background color is #C5DDAA.
.myBorderColor { border: 1px solid #C5DDAA; }
<div style="border:3px solid #C5DDAA">Div</div>
This div border color is #C5DDAA.
.myOpacity80 { color: #C5DDAA; opacity: 0.8; }
<p style="color:#C5DDAA;opacity:0.8;">80%</p>
Text with #C5DDAA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5DDAA;}
<p style="text-shadow: 3px 3px 1px #C5DDAA">Text here.</p>
This text has shadow with #C5DDAA color.
.textShadow {text-shadow: 3px 3px 1px #C5DDAA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5DDAA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5DDAA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5DDAA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5DDAA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5DDAA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5DDAA; -webkit-box-shadow: 1px 1px 3px 2px #C5DDAA; box-shadow: 1px 1px 3px 2px #C5DDAA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5DDAA; -webkit-box-shadow: 1px 1px 3px 2px #C5DDAA; box-shadow:1px 1px 3px 2px #C5DDAA;">
Div content here</div>
This text has color #C5DDAA on black background.
This text has color #C5DDAA on white background.
This text has black color on #C5DDAA background.
This text has white color on #C5DDAA background.