HEX: #C4765E
RGB: (196,118,94)
#C4765E contains mainly red color. Web safe color of #C4765E is #CC6666 (or #C66).
#C4765E color RGB value is (196,118,94).
RGB: (196,118,94) (77%,46%,37%)
R 196 of 255 = 77%
G 118 of 255 = 46%
B 94 of 255 = 37%
R + G + B ~ 53%. #C4765E is middle color (not dark and not light).
R + G + B =
196 + 118 + 94 = 408 (100%)
R 196 of 408 ~ 48.04%
G 118 of 408 ~ 28.92%
B 94 of 408 ~ 23.04%
#C4765E color CMYK value is (0,40,52,23).
CMYK: (0,40,52,23) C0M40Y52K23 (0%,40%,52%,23%) (0.00/0.40/0.52/0.23)
C4 | 76 | 5E | |
---|---|---|---|
RGB | 196 | 118 | 94 |
HSL | 14° | 46.36% | 56.86% |
HSB/HSV | 14° | 52.04% | 76.86% |
CMYK | 0.00% | 39.80% | 52.04% |
23.14% |
HEX | C4 | 76 | 5E |
Decimal | 196 | 118 | 94 |
Binary | 11000100 | 1110110 | 1011110 |
Octal | 304 | 166 | 136 |
Examples of css and html codes for elements with #C4765E color. Also use rgb(196,118,94) instead hex code.
.myTextColor { color: #C4765E; }
<p style="color:#C4765E">This sample text font color is #C4765E.</p>
This text font color is #C4765E.
.myBgColor { background-color: #C4765E; }
<div style="background-color:#C4765E">Inner text</div>
This div background color is #C4765E.
.myBorderColor { border: 1px solid #C4765E; }
<div style="border:3px solid #C4765E">Div</div>
This div border color is #C4765E.
.myOpacity80 { color: #C4765E; opacity: 0.8; }
<p style="color:#C4765E;opacity:0.8;">80%</p>
Text with #C4765E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4765E;}
<p style="text-shadow: 3px 3px 1px #C4765E">Text here.</p>
This text has shadow with #C4765E color.
.textShadow {text-shadow: 3px 3px 1px #C4765E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4765E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4765E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4765E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4765E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4765E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4765E; -webkit-box-shadow: 1px 1px 3px 2px #C4765E; box-shadow: 1px 1px 3px 2px #C4765E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4765E; -webkit-box-shadow: 1px 1px 3px 2px #C4765E; box-shadow:1px 1px 3px 2px #C4765E;">
Div content here</div>
This text has color #C4765E on black background.
This text has color #C4765E on white background.
This text has black color on #C4765E background.
This text has white color on #C4765E background.