HEX: #C5766E
RGB: (197,118,110)
#C5766E contains mainly red color. Web safe color of #C5766E is #CC6666 (or #C66).
#C5766E color RGB value is (197,118,110).
RGB: (197,118,110) (77%,46%,43%)
R 197 of 255 = 77%
G 118 of 255 = 46%
B 110 of 255 = 43%
R + G + B ~ 55%. #C5766E is middle color (not dark and not light).
R + G + B =
197 + 118 + 110 = 425 (100%)
R 197 of 425 ~ 46.35%
G 118 of 425 ~ 27.76%
B 110 of 425 ~ 25.88%
#C5766E color CMYK value is (0,40,44,23).
CMYK: (0,40,44,23) C0M40Y44K23 (0%,40%,44%,23%) (0.00/0.40/0.44/0.23)
C5 | 76 | 6E | |
---|---|---|---|
RGB | 197 | 118 | 110 |
HSL | 6° | 42.86% | 60.20% |
HSB/HSV | 6° | 44.16% | 77.25% |
CMYK | 0.00% | 40.10% | 44.16% |
22.75% |
HEX | C5 | 76 | 6E |
Decimal | 197 | 118 | 110 |
Binary | 11000101 | 1110110 | 1101110 |
Octal | 305 | 166 | 156 |
Examples of css and html codes for elements with #C5766E color. Also use rgb(197,118,110) instead hex code.
.myTextColor { color: #C5766E; }
<p style="color:#C5766E">This sample text font color is #C5766E.</p>
This text font color is #C5766E.
.myBgColor { background-color: #C5766E; }
<div style="background-color:#C5766E">Inner text</div>
This div background color is #C5766E.
.myBorderColor { border: 1px solid #C5766E; }
<div style="border:3px solid #C5766E">Div</div>
This div border color is #C5766E.
.myOpacity80 { color: #C5766E; opacity: 0.8; }
<p style="color:#C5766E;opacity:0.8;">80%</p>
Text with #C5766E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5766E;}
<p style="text-shadow: 3px 3px 1px #C5766E">Text here.</p>
This text has shadow with #C5766E color.
.textShadow {text-shadow: 3px 3px 1px #C5766E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5766E, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5766E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5766E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5766E, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5766E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5766E; -webkit-box-shadow: 1px 1px 3px 2px #C5766E; box-shadow: 1px 1px 3px 2px #C5766E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5766E; -webkit-box-shadow: 1px 1px 3px 2px #C5766E; box-shadow:1px 1px 3px 2px #C5766E;">
Div content here</div>
This text has color #C5766E on black background.
This text has color #C5766E on white background.
This text has black color on #C5766E background.
This text has white color on #C5766E background.