HEX: #C7DCAB
RGB: (199,220,171)
#C7DCAB contains red, green and blue colors in about the same proportion. Web safe color of #C7DCAB is #CCCC99 (or #CC9).
#C7DCAB color RGB value is (199,220,171).
RGB: (199,220,171) (78%,86%,67%)
R 199 of 255 = 78%
G 220 of 255 = 86%
B 171 of 255 = 67%
R + G + B ~ 77%. #C7DCAB is quite light color.
R + G + B =
199 + 220 + 171 = 590 (100%)
R 199 of 590 ~ 33.73%
G 220 of 590 ~ 37.29%
B 171 of 590 ~ 28.98%
#C7DCAB color CMYK value is (10,0,22,14).
CMYK: (10,0,22,14) C10M0Y22K14 (10%,0%,22%,14%) (0.10/0.00/0.22/0.14)
C7 | DC | AB | |
---|---|---|---|
RGB | 199 | 220 | 171 |
HSL | 86° | 41.18% | 76.67% |
HSB/HSV | 86° | 22.27% | 86.27% |
CMYK | 9.55% | 0.00% | 22.27% |
13.73% |
HEX | C7 | DC | AB |
Decimal | 199 | 220 | 171 |
Binary | 11000111 | 11011100 | 10101011 |
Octal | 307 | 334 | 253 |
Examples of css and html codes for elements with #C7DCAB color. Also use rgb(199,220,171) instead hex code.
.myTextColor { color: #C7DCAB; }
<p style="color:#C7DCAB">This sample text font color is #C7DCAB.</p>
This text font color is #C7DCAB.
.myBgColor { background-color: #C7DCAB; }
<div style="background-color:#C7DCAB">Inner text</div>
This div background color is #C7DCAB.
.myBorderColor { border: 1px solid #C7DCAB; }
<div style="border:3px solid #C7DCAB">Div</div>
This div border color is #C7DCAB.
.myOpacity80 { color: #C7DCAB; opacity: 0.8; }
<p style="color:#C7DCAB;opacity:0.8;">80%</p>
Text with #C7DCAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7DCAB;}
<p style="text-shadow: 3px 3px 1px #C7DCAB">Text here.</p>
This text has shadow with #C7DCAB color.
.textShadow {text-shadow: 3px 3px 1px #C7DCAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7DCAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7DCAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7DCAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7DCAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7DCAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7DCAB; -webkit-box-shadow: 1px 1px 3px 2px #C7DCAB; box-shadow: 1px 1px 3px 2px #C7DCAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7DCAB; -webkit-box-shadow: 1px 1px 3px 2px #C7DCAB; box-shadow:1px 1px 3px 2px #C7DCAB;">
Div content here</div>
This text has color #C7DCAB on black background.
This text has color #C7DCAB on white background.
This text has black color on #C7DCAB background.
This text has white color on #C7DCAB background.