HEX: #C49FAB
RGB: (196,159,171)
#C49FAB contains red, green and blue colors in about the same proportion. Web safe color of #C49FAB is #CC9999 (or #C99).
#C49FAB color RGB value is (196,159,171).
RGB: (196,159,171) (77%,62%,67%)
R 196 of 255 = 77%
G 159 of 255 = 62%
B 171 of 255 = 67%
R + G + B ~ 69%. #C49FAB is quite light color.
R + G + B =
196 + 159 + 171 = 526 (100%)
R 196 of 526 ~ 37.26%
G 159 of 526 ~ 30.23%
B 171 of 526 ~ 32.51%
#C49FAB color CMYK value is (0,19,13,23).
CMYK: (0,19,13,23) C0M19Y13K23 (0%,19%,13%,23%) (0.00/0.19/0.13/0.23)
C4 | 9F | AB | |
---|---|---|---|
RGB | 196 | 159 | 171 |
HSL | 341° | 23.87% | 69.61% |
HSB/HSV | 341° | 18.88% | 76.86% |
CMYK | 0.00% | 18.88% | 12.76% |
23.14% |
HEX | C4 | 9F | AB |
Decimal | 196 | 159 | 171 |
Binary | 11000100 | 10011111 | 10101011 |
Octal | 304 | 237 | 253 |
Examples of css and html codes for elements with #C49FAB color. Also use rgb(196,159,171) instead hex code.
.myTextColor { color: #C49FAB; }
<p style="color:#C49FAB">This sample text font color is #C49FAB.</p>
This text font color is #C49FAB.
.myBgColor { background-color: #C49FAB; }
<div style="background-color:#C49FAB">Inner text</div>
This div background color is #C49FAB.
.myBorderColor { border: 1px solid #C49FAB; }
<div style="border:3px solid #C49FAB">Div</div>
This div border color is #C49FAB.
.myOpacity80 { color: #C49FAB; opacity: 0.8; }
<p style="color:#C49FAB;opacity:0.8;">80%</p>
Text with #C49FAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C49FAB;}
<p style="text-shadow: 3px 3px 1px #C49FAB">Text here.</p>
This text has shadow with #C49FAB color.
.textShadow {text-shadow: 3px 3px 1px #C49FAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C49FAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C49FAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C49FAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C49FAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C49FAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C49FAB; -webkit-box-shadow: 1px 1px 3px 2px #C49FAB; box-shadow: 1px 1px 3px 2px #C49FAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C49FAB; -webkit-box-shadow: 1px 1px 3px 2px #C49FAB; box-shadow:1px 1px 3px 2px #C49FAB;">
Div content here</div>
This text has color #C49FAB on black background.
This text has color #C49FAB on white background.
This text has black color on #C49FAB background.
This text has white color on #C49FAB background.