HEX: #C7ABAE
RGB: (199,171,174)
#C7ABAE contains red, green and blue colors in about the same proportion. Web safe color of #C7ABAE is #CC9999 (or #C99).
#C7ABAE color RGB value is (199,171,174).
RGB: (199,171,174) (78%,67%,68%)
R 199 of 255 = 78%
G 171 of 255 = 67%
B 174 of 255 = 68%
R + G + B ~ 71%. #C7ABAE is quite light color.
R + G + B =
199 + 171 + 174 = 544 (100%)
R 199 of 544 ~ 36.58%
G 171 of 544 ~ 31.43%
B 174 of 544 ~ 31.99%
#C7ABAE color CMYK value is (0,14,13,22).
CMYK: (0,14,13,22) C0M14Y13K22 (0%,14%,13%,22%) (0.00/0.14/0.13/0.22)
C7 | AB | AE | |
---|---|---|---|
RGB | 199 | 171 | 174 |
HSL | 354° | 20.00% | 72.55% |
HSB/HSV | 354° | 14.07% | 78.04% |
CMYK | 0.00% | 14.07% | 12.56% |
21.96% |
HEX | C7 | AB | AE |
Decimal | 199 | 171 | 174 |
Binary | 11000111 | 10101011 | 10101110 |
Octal | 307 | 253 | 256 |
Examples of css and html codes for elements with #C7ABAE color. Also use rgb(199,171,174) instead hex code.
.myTextColor { color: #C7ABAE; }
<p style="color:#C7ABAE">This sample text font color is #C7ABAE.</p>
This text font color is #C7ABAE.
.myBgColor { background-color: #C7ABAE; }
<div style="background-color:#C7ABAE">Inner text</div>
This div background color is #C7ABAE.
.myBorderColor { border: 1px solid #C7ABAE; }
<div style="border:3px solid #C7ABAE">Div</div>
This div border color is #C7ABAE.
.myOpacity80 { color: #C7ABAE; opacity: 0.8; }
<p style="color:#C7ABAE;opacity:0.8;">80%</p>
Text with #C7ABAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7ABAE;}
<p style="text-shadow: 3px 3px 1px #C7ABAE">Text here.</p>
This text has shadow with #C7ABAE color.
.textShadow {text-shadow: 3px 3px 1px #C7ABAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7ABAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7ABAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7ABAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7ABAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7ABAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7ABAE; -webkit-box-shadow: 1px 1px 3px 2px #C7ABAE; box-shadow: 1px 1px 3px 2px #C7ABAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7ABAE; -webkit-box-shadow: 1px 1px 3px 2px #C7ABAE; box-shadow:1px 1px 3px 2px #C7ABAE;">
Div content here</div>
This text has color #C7ABAE on black background.
This text has color #C7ABAE on white background.
This text has black color on #C7ABAE background.
This text has white color on #C7ABAE background.