HEX: #C48496
RGB: (196,132,150)
#C48496 contains mainly red and blue colors. Web safe color of #C48496 is #CC9999 (or #C99).
#C48496 color RGB value is (196,132,150).
RGB: (196,132,150) (77%,52%,59%)
R 196 of 255 = 77%
G 132 of 255 = 52%
B 150 of 255 = 59%
R + G + B ~ 63%. #C48496 is quite light color.
R + G + B =
196 + 132 + 150 = 478 (100%)
R 196 of 478 ~ 41%
G 132 of 478 ~ 27.62%
B 150 of 478 ~ 31.38%
#C48496 color CMYK value is (0,33,23,23).
CMYK: (0,33,23,23) C0M33Y23K23 (0%,33%,23%,23%) (0.00/0.33/0.23/0.23)
C4 | 84 | 96 | |
---|---|---|---|
RGB | 196 | 132 | 150 |
HSL | 343° | 35.16% | 64.31% |
HSB/HSV | 343° | 32.65% | 76.86% |
CMYK | 0.00% | 32.65% | 23.47% |
23.14% |
HEX | C4 | 84 | 96 |
Decimal | 196 | 132 | 150 |
Binary | 11000100 | 10000100 | 10010110 |
Octal | 304 | 204 | 226 |
Examples of css and html codes for elements with #C48496 color. Also use rgb(196,132,150) instead hex code.
.myTextColor { color: #C48496; }
<p style="color:#C48496">This sample text font color is #C48496.</p>
This text font color is #C48496.
.myBgColor { background-color: #C48496; }
<div style="background-color:#C48496">Inner text</div>
This div background color is #C48496.
.myBorderColor { border: 1px solid #C48496; }
<div style="border:3px solid #C48496">Div</div>
This div border color is #C48496.
.myOpacity80 { color: #C48496; opacity: 0.8; }
<p style="color:#C48496;opacity:0.8;">80%</p>
Text with #C48496 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C48496;}
<p style="text-shadow: 3px 3px 1px #C48496">Text here.</p>
This text has shadow with #C48496 color.
.textShadow {text-shadow: 3px 3px 1px #C48496, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C48496, 5px 5px 20px red">Text here.</p>
This text has shadow with #C48496 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C48496, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C48496, Direction=45, Strength=4)">Text</p>
This text has shadow with #C48496 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C48496; -webkit-box-shadow: 1px 1px 3px 2px #C48496; box-shadow: 1px 1px 3px 2px #C48496; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C48496; -webkit-box-shadow: 1px 1px 3px 2px #C48496; box-shadow:1px 1px 3px 2px #C48496;">
Div content here</div>
This text has color #C48496 on black background.
This text has color #C48496 on white background.
This text has black color on #C48496 background.
This text has white color on #C48496 background.