HEX: #C48399
RGB: (196,131,153)
#C48399 contains mainly red and blue colors. Web safe color of #C48399 is #CC9999 (or #C99).
#C48399 color RGB value is (196,131,153).
RGB: (196,131,153) (77%,51%,60%)
R 196 of 255 = 77%
G 131 of 255 = 51%
B 153 of 255 = 60%
R + G + B ~ 63%. #C48399 is quite light color.
R + G + B =
196 + 131 + 153 = 480 (100%)
R 196 of 480 ~ 40.83%
G 131 of 480 ~ 27.29%
B 153 of 480 ~ 31.88%
#C48399 color CMYK value is (0,33,22,23).
CMYK: (0,33,22,23) C0M33Y22K23 (0%,33%,22%,23%) (0.00/0.33/0.22/0.23)
C4 | 83 | 99 | |
---|---|---|---|
RGB | 196 | 131 | 153 |
HSL | 340° | 35.52% | 64.12% |
HSB/HSV | 340° | 33.16% | 76.86% |
CMYK | 0.00% | 33.16% | 21.94% |
23.14% |
HEX | C4 | 83 | 99 |
Decimal | 196 | 131 | 153 |
Binary | 11000100 | 10000011 | 10011001 |
Octal | 304 | 203 | 231 |
Examples of css and html codes for elements with #C48399 color. Also use rgb(196,131,153) instead hex code.
.myTextColor { color: #C48399; }
<p style="color:#C48399">This sample text font color is #C48399.</p>
This text font color is #C48399.
.myBgColor { background-color: #C48399; }
<div style="background-color:#C48399">Inner text</div>
This div background color is #C48399.
.myBorderColor { border: 1px solid #C48399; }
<div style="border:3px solid #C48399">Div</div>
This div border color is #C48399.
.myOpacity80 { color: #C48399; opacity: 0.8; }
<p style="color:#C48399;opacity:0.8;">80%</p>
Text with #C48399 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C48399;}
<p style="text-shadow: 3px 3px 1px #C48399">Text here.</p>
This text has shadow with #C48399 color.
.textShadow {text-shadow: 3px 3px 1px #C48399, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C48399, 5px 5px 20px red">Text here.</p>
This text has shadow with #C48399 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C48399, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C48399, Direction=45, Strength=4)">Text</p>
This text has shadow with #C48399 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C48399; -webkit-box-shadow: 1px 1px 3px 2px #C48399; box-shadow: 1px 1px 3px 2px #C48399; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C48399; -webkit-box-shadow: 1px 1px 3px 2px #C48399; box-shadow:1px 1px 3px 2px #C48399;">
Div content here</div>
This text has color #C48399 on black background.
This text has color #C48399 on white background.
This text has black color on #C48399 background.
This text has white color on #C48399 background.