HEX: #C496AC
RGB: (196,150,172)
#C496AC contains red, green and blue colors in about the same proportion. Web safe color of #C496AC is #CC9999 (or #C99).
#C496AC color RGB value is (196,150,172).
RGB: (196,150,172) (77%,59%,67%)
R 196 of 255 = 77%
G 150 of 255 = 59%
B 172 of 255 = 67%
R + G + B ~ 68%. #C496AC is quite light color.
R + G + B =
196 + 150 + 172 = 518 (100%)
R 196 of 518 ~ 37.84%
G 150 of 518 ~ 28.96%
B 172 of 518 ~ 33.2%
#C496AC color CMYK value is (0,23,12,23).
CMYK: (0,23,12,23) C0M23Y12K23 (0%,23%,12%,23%) (0.00/0.23/0.12/0.23)
C4 | 96 | AC | |
---|---|---|---|
RGB | 196 | 150 | 172 |
HSL | 331° | 28.05% | 67.84% |
HSB/HSV | 331° | 23.47% | 76.86% |
CMYK | 0.00% | 23.47% | 12.24% |
23.14% |
HEX | C4 | 96 | AC |
Decimal | 196 | 150 | 172 |
Binary | 11000100 | 10010110 | 10101100 |
Octal | 304 | 226 | 254 |
Examples of css and html codes for elements with #C496AC color. Also use rgb(196,150,172) instead hex code.
.myTextColor { color: #C496AC; }
<p style="color:#C496AC">This sample text font color is #C496AC.</p>
This text font color is #C496AC.
.myBgColor { background-color: #C496AC; }
<div style="background-color:#C496AC">Inner text</div>
This div background color is #C496AC.
.myBorderColor { border: 1px solid #C496AC; }
<div style="border:3px solid #C496AC">Div</div>
This div border color is #C496AC.
.myOpacity80 { color: #C496AC; opacity: 0.8; }
<p style="color:#C496AC;opacity:0.8;">80%</p>
Text with #C496AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C496AC;}
<p style="text-shadow: 3px 3px 1px #C496AC">Text here.</p>
This text has shadow with #C496AC color.
.textShadow {text-shadow: 3px 3px 1px #C496AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C496AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C496AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C496AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C496AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C496AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C496AC; -webkit-box-shadow: 1px 1px 3px 2px #C496AC; box-shadow: 1px 1px 3px 2px #C496AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C496AC; -webkit-box-shadow: 1px 1px 3px 2px #C496AC; box-shadow:1px 1px 3px 2px #C496AC;">
Div content here</div>
This text has color #C496AC on black background.
This text has color #C496AC on white background.
This text has black color on #C496AC background.
This text has white color on #C496AC background.