HEX: #C5D19D
RGB: (197,209,157)
#C5D19D contains red, green and blue colors in about the same proportion. Web safe color of #C5D19D is #CCCC99 (or #CC9).
#C5D19D color RGB value is (197,209,157).
RGB: (197,209,157) (77%,82%,62%)
R 197 of 255 = 77%
G 209 of 255 = 82%
B 157 of 255 = 62%
R + G + B ~ 74%. #C5D19D is quite light color.
R + G + B =
197 + 209 + 157 = 563 (100%)
R 197 of 563 ~ 34.99%
G 209 of 563 ~ 37.12%
B 157 of 563 ~ 27.89%
#C5D19D color CMYK value is (6,0,25,18).
CMYK: (6,0,25,18) C6M0Y25K18 (6%,0%,25%,18%) (0.06/0.00/0.25/0.18)
C5 | D1 | 9D | |
---|---|---|---|
RGB | 197 | 209 | 157 |
HSL | 74° | 36.11% | 71.76% |
HSB/HSV | 74° | 24.88% | 81.96% |
CMYK | 5.74% | 0.00% | 24.88% |
18.04% |
HEX | C5 | D1 | 9D |
Decimal | 197 | 209 | 157 |
Binary | 11000101 | 11010001 | 10011101 |
Octal | 305 | 321 | 235 |
Examples of css and html codes for elements with #C5D19D color. Also use rgb(197,209,157) instead hex code.
.myTextColor { color: #C5D19D; }
<p style="color:#C5D19D">This sample text font color is #C5D19D.</p>
This text font color is #C5D19D.
.myBgColor { background-color: #C5D19D; }
<div style="background-color:#C5D19D">Inner text</div>
This div background color is #C5D19D.
.myBorderColor { border: 1px solid #C5D19D; }
<div style="border:3px solid #C5D19D">Div</div>
This div border color is #C5D19D.
.myOpacity80 { color: #C5D19D; opacity: 0.8; }
<p style="color:#C5D19D;opacity:0.8;">80%</p>
Text with #C5D19D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5D19D;}
<p style="text-shadow: 3px 3px 1px #C5D19D">Text here.</p>
This text has shadow with #C5D19D color.
.textShadow {text-shadow: 3px 3px 1px #C5D19D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5D19D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5D19D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5D19D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5D19D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5D19D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5D19D; -webkit-box-shadow: 1px 1px 3px 2px #C5D19D; box-shadow: 1px 1px 3px 2px #C5D19D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5D19D; -webkit-box-shadow: 1px 1px 3px 2px #C5D19D; box-shadow:1px 1px 3px 2px #C5D19D;">
Div content here</div>
This text has color #C5D19D on black background.
This text has color #C5D19D on white background.
This text has black color on #C5D19D background.
This text has white color on #C5D19D background.