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