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