HEX: #C4A663
RGB: (196,166,99)
#C4A663 contains mainly red and green colors. Web safe color of #C4A663 is #CC9966 (or #C96).
#C4A663 color RGB value is (196,166,99).
RGB: (196,166,99) (77%,65%,39%)
R 196 of 255 = 77%
G 166 of 255 = 65%
B 99 of 255 = 39%
R + G + B ~ 60%. #C4A663 is middle color (not dark and not light).
R + G + B =
196 + 166 + 99 = 461 (100%)
R 196 of 461 ~ 42.52%
G 166 of 461 ~ 36.01%
B 99 of 461 ~ 21.48%
#C4A663 color CMYK value is (0,15,49,23).
CMYK: (0,15,49,23) C0M15Y49K23 (0%,15%,49%,23%) (0.00/0.15/0.49/0.23)
C4 | A6 | 63 | |
---|---|---|---|
RGB | 196 | 166 | 99 |
HSL | 41° | 45.12% | 57.84% |
HSB/HSV | 41° | 49.49% | 76.86% |
CMYK | 0.00% | 15.31% | 49.49% |
23.14% |
HEX | C4 | A6 | 63 |
Decimal | 196 | 166 | 99 |
Binary | 11000100 | 10100110 | 1100011 |
Octal | 304 | 246 | 143 |
Examples of css and html codes for elements with #C4A663 color. Also use rgb(196,166,99) instead hex code.
.myTextColor { color: #C4A663; }
<p style="color:#C4A663">This sample text font color is #C4A663.</p>
This text font color is #C4A663.
.myBgColor { background-color: #C4A663; }
<div style="background-color:#C4A663">Inner text</div>
This div background color is #C4A663.
.myBorderColor { border: 1px solid #C4A663; }
<div style="border:3px solid #C4A663">Div</div>
This div border color is #C4A663.
.myOpacity80 { color: #C4A663; opacity: 0.8; }
<p style="color:#C4A663;opacity:0.8;">80%</p>
Text with #C4A663 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4A663;}
<p style="text-shadow: 3px 3px 1px #C4A663">Text here.</p>
This text has shadow with #C4A663 color.
.textShadow {text-shadow: 3px 3px 1px #C4A663, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4A663, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4A663 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4A663, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4A663, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4A663 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4A663; -webkit-box-shadow: 1px 1px 3px 2px #C4A663; box-shadow: 1px 1px 3px 2px #C4A663; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4A663; -webkit-box-shadow: 1px 1px 3px 2px #C4A663; box-shadow:1px 1px 3px 2px #C4A663;">
Div content here</div>
This text has color #C4A663 on black background.
This text has color #C4A663 on white background.
This text has black color on #C4A663 background.
This text has white color on #C4A663 background.