HEX: #C4ABAE
RGB: (196,171,174)
#C4ABAE contains red, green and blue colors in about the same proportion. Web safe color of #C4ABAE is #CC9999 (or #C99).
#C4ABAE color RGB value is (196,171,174).
RGB: (196,171,174) (77%,67%,68%)
R 196 of 255 = 77%
G 171 of 255 = 67%
B 174 of 255 = 68%
R + G + B ~ 71%. #C4ABAE is quite light color.
R + G + B =
196 + 171 + 174 = 541 (100%)
R 196 of 541 ~ 36.23%
G 171 of 541 ~ 31.61%
B 174 of 541 ~ 32.16%
#C4ABAE color CMYK value is (0,13,11,23).
CMYK: (0,13,11,23) C0M13Y11K23 (0%,13%,11%,23%) (0.00/0.13/0.11/0.23)
C4 | AB | AE | |
---|---|---|---|
RGB | 196 | 171 | 174 |
HSL | 353° | 17.48% | 71.96% |
HSB/HSV | 353° | 12.76% | 76.86% |
CMYK | 0.00% | 12.76% | 11.22% |
23.14% |
HEX | C4 | AB | AE |
Decimal | 196 | 171 | 174 |
Binary | 11000100 | 10101011 | 10101110 |
Octal | 304 | 253 | 256 |
Examples of css and html codes for elements with #C4ABAE color. Also use rgb(196,171,174) instead hex code.
.myTextColor { color: #C4ABAE; }
<p style="color:#C4ABAE">This sample text font color is #C4ABAE.</p>
This text font color is #C4ABAE.
.myBgColor { background-color: #C4ABAE; }
<div style="background-color:#C4ABAE">Inner text</div>
This div background color is #C4ABAE.
.myBorderColor { border: 1px solid #C4ABAE; }
<div style="border:3px solid #C4ABAE">Div</div>
This div border color is #C4ABAE.
.myOpacity80 { color: #C4ABAE; opacity: 0.8; }
<p style="color:#C4ABAE;opacity:0.8;">80%</p>
Text with #C4ABAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C4ABAE;}
<p style="text-shadow: 3px 3px 1px #C4ABAE">Text here.</p>
This text has shadow with #C4ABAE color.
.textShadow {text-shadow: 3px 3px 1px #C4ABAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C4ABAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C4ABAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C4ABAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C4ABAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C4ABAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C4ABAE; -webkit-box-shadow: 1px 1px 3px 2px #C4ABAE; box-shadow: 1px 1px 3px 2px #C4ABAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C4ABAE; -webkit-box-shadow: 1px 1px 3px 2px #C4ABAE; box-shadow:1px 1px 3px 2px #C4ABAE;">
Div content here</div>
This text has color #C4ABAE on black background.
This text has color #C4ABAE on white background.
This text has black color on #C4ABAE background.
This text has white color on #C4ABAE background.