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