HEX: #C5AFAB
RGB: (197,175,171)
#C5AFAB contains red, green and blue colors in about the same proportion. Web safe color of #C5AFAB is #CC9999 (or #C99).
#C5AFAB color RGB value is (197,175,171).
RGB: (197,175,171) (77%,69%,67%)
R 197 of 255 = 77%
G 175 of 255 = 69%
B 171 of 255 = 67%
R + G + B ~ 71%. #C5AFAB is quite light color.
R + G + B =
197 + 175 + 171 = 543 (100%)
R 197 of 543 ~ 36.28%
G 175 of 543 ~ 32.23%
B 171 of 543 ~ 31.49%
#C5AFAB color CMYK value is (0,11,13,23).
CMYK: (0,11,13,23) C0M11Y13K23 (0%,11%,13%,23%) (0.00/0.11/0.13/0.23)
C5 | AF | AB | |
---|---|---|---|
RGB | 197 | 175 | 171 |
HSL | 9° | 18.31% | 72.16% |
HSB/HSV | 9° | 13.20% | 77.25% |
CMYK | 0.00% | 11.17% | 13.20% |
22.75% |
HEX | C5 | AF | AB |
Decimal | 197 | 175 | 171 |
Binary | 11000101 | 10101111 | 10101011 |
Octal | 305 | 257 | 253 |
Examples of css and html codes for elements with #C5AFAB color. Also use rgb(197,175,171) instead hex code.
.myTextColor { color: #C5AFAB; }
<p style="color:#C5AFAB">This sample text font color is #C5AFAB.</p>
This text font color is #C5AFAB.
.myBgColor { background-color: #C5AFAB; }
<div style="background-color:#C5AFAB">Inner text</div>
This div background color is #C5AFAB.
.myBorderColor { border: 1px solid #C5AFAB; }
<div style="border:3px solid #C5AFAB">Div</div>
This div border color is #C5AFAB.
.myOpacity80 { color: #C5AFAB; opacity: 0.8; }
<p style="color:#C5AFAB;opacity:0.8;">80%</p>
Text with #C5AFAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5AFAB;}
<p style="text-shadow: 3px 3px 1px #C5AFAB">Text here.</p>
This text has shadow with #C5AFAB color.
.textShadow {text-shadow: 3px 3px 1px #C5AFAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5AFAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5AFAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5AFAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5AFAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5AFAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5AFAB; -webkit-box-shadow: 1px 1px 3px 2px #C5AFAB; box-shadow: 1px 1px 3px 2px #C5AFAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5AFAB; -webkit-box-shadow: 1px 1px 3px 2px #C5AFAB; box-shadow:1px 1px 3px 2px #C5AFAB;">
Div content here</div>
This text has color #C5AFAB on black background.
This text has color #C5AFAB on white background.
This text has black color on #C5AFAB background.
This text has white color on #C5AFAB background.