HEX: #C46096
RGB: (196,96,150)
#C46096 contains mainly red and blue colors. Web safe color of #C46096 is #CC6699 (or #C69).
#C46096 color RGB value is (196,96,150).
RGB: (196,96,150) (77%,38%,59%)
R 196 of 255 = 77%
G 96 of 255 = 38%
B 150 of 255 = 59%
R + G + B ~ 58%. #C46096 is middle color (not dark and not light).
R + G + B =
196 + 96 + 150 = 442 (100%)
R 196 of 442 ~ 44.34%
G 96 of 442 ~ 21.72%
B 150 of 442 ~ 33.94%
#C46096 color CMYK value is (0,51,23,23).
CMYK: (0,51,23,23) C0M51Y23K23 (0%,51%,23%,23%) (0.00/0.51/0.23/0.23)
C4 | 60 | 96 | |
---|---|---|---|
RGB | 196 | 96 | 150 |
HSL | 328° | 45.87% | 57.25% |
HSB/HSV | 328° | 51.02% | 76.86% |
CMYK | 0.00% | 51.02% | 23.47% |
23.14% |
HEX | C4 | 60 | 96 |
Decimal | 196 | 96 | 150 |
Binary | 11000100 | 1100000 | 10010110 |
Octal | 304 | 140 | 226 |
Examples of css and html codes for elements with #C46096 color. Also use rgb(196,96,150) instead hex code.
.myTextColor { color: #C46096; }
<p style="color:#C46096">This sample text font color is #C46096.</p>
This text font color is #C46096.
.myBgColor { background-color: #C46096; }
<div style="background-color:#C46096">Inner text</div>
This div background color is #C46096.
.myBorderColor { border: 1px solid #C46096; }
<div style="border:3px solid #C46096">Div</div>
This div border color is #C46096.
.myOpacity80 { color: #C46096; opacity: 0.8; }
<p style="color:#C46096;opacity:0.8;">80%</p>
Text with #C46096 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C46096;}
<p style="text-shadow: 3px 3px 1px #C46096">Text here.</p>
This text has shadow with #C46096 color.
.textShadow {text-shadow: 3px 3px 1px #C46096, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C46096, 5px 5px 20px red">Text here.</p>
This text has shadow with #C46096 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C46096, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C46096, Direction=45, Strength=4)">Text</p>
This text has shadow with #C46096 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C46096; -webkit-box-shadow: 1px 1px 3px 2px #C46096; box-shadow: 1px 1px 3px 2px #C46096; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C46096; -webkit-box-shadow: 1px 1px 3px 2px #C46096; box-shadow:1px 1px 3px 2px #C46096;">
Div content here</div>
This text has color #C46096 on black background.
This text has color #C46096 on white background.
This text has black color on #C46096 background.
This text has white color on #C46096 background.