HEX: #CCA376
RGB: (204,163,118)
#CCA376 contains mainly red and green colors. Web safe color of #CCA376 is #CC9966 (or #C96).
#CCA376 color RGB value is (204,163,118).
RGB: (204,163,118) (80%,64%,46%)
R 204 of 255 = 80%
G 163 of 255 = 64%
B 118 of 255 = 46%
R + G + B ~ 63%. #CCA376 is quite light color.
R + G + B =
204 + 163 + 118 = 485 (100%)
R 204 of 485 ~ 42.06%
G 163 of 485 ~ 33.61%
B 118 of 485 ~ 24.33%
#CCA376 color CMYK value is (0,20,42,20).
CMYK: (0,20,42,20) C0M20Y42K20 (0%,20%,42%,20%) (0.00/0.20/0.42/0.20)
CC | A3 | 76 | |
---|---|---|---|
RGB | 204 | 163 | 118 |
HSL | 31° | 45.74% | 63.14% |
HSB/HSV | 31° | 42.16% | 80.00% |
CMYK | 0.00% | 20.10% | 42.16% |
20.00% |
HEX | CC | A3 | 76 |
Decimal | 204 | 163 | 118 |
Binary | 11001100 | 10100011 | 1110110 |
Octal | 314 | 243 | 166 |
Examples of css and html codes for elements with #CCA376 color. Also use rgb(204,163,118) instead hex code.
.myTextColor { color: #CCA376; }
<p style="color:#CCA376">This sample text font color is #CCA376.</p>
This text font color is #CCA376.
.myBgColor { background-color: #CCA376; }
<div style="background-color:#CCA376">Inner text</div>
This div background color is #CCA376.
.myBorderColor { border: 1px solid #CCA376; }
<div style="border:3px solid #CCA376">Div</div>
This div border color is #CCA376.
.myOpacity80 { color: #CCA376; opacity: 0.8; }
<p style="color:#CCA376;opacity:0.8;">80%</p>
Text with #CCA376 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CCA376;}
<p style="text-shadow: 3px 3px 1px #CCA376">Text here.</p>
This text has shadow with #CCA376 color.
.textShadow {text-shadow: 3px 3px 1px #CCA376, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CCA376, 5px 5px 20px red">Text here.</p>
This text has shadow with #CCA376 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CCA376, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CCA376, Direction=45, Strength=4)">Text</p>
This text has shadow with #CCA376 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CCA376; -webkit-box-shadow: 1px 1px 3px 2px #CCA376; box-shadow: 1px 1px 3px 2px #CCA376; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CCA376; -webkit-box-shadow: 1px 1px 3px 2px #CCA376; box-shadow:1px 1px 3px 2px #CCA376;">
Div content here</div>
This text has color #CCA376 on black background.
This text has color #CCA376 on white background.
This text has black color on #CCA376 background.
This text has white color on #CCA376 background.