HEX: #C69FAB
RGB: (198,159,171)
#C69FAB contains red, green and blue colors in about the same proportion. Web safe color of #C69FAB is #CC9999 (or #C99).
#C69FAB color RGB value is (198,159,171).
RGB: (198,159,171) (78%,62%,67%)
R 198 of 255 = 78%
G 159 of 255 = 62%
B 171 of 255 = 67%
R + G + B ~ 69%. #C69FAB is quite light color.
R + G + B =
198 + 159 + 171 = 528 (100%)
R 198 of 528 ~ 37.5%
G 159 of 528 ~ 30.11%
B 171 of 528 ~ 32.39%
#C69FAB color CMYK value is (0,20,14,22).
CMYK: (0,20,14,22) C0M20Y14K22 (0%,20%,14%,22%) (0.00/0.20/0.14/0.22)
C6 | 9F | AB | |
---|---|---|---|
RGB | 198 | 159 | 171 |
HSL | 342° | 25.49% | 70.00% |
HSB/HSV | 342° | 19.70% | 77.65% |
CMYK | 0.00% | 19.70% | 13.64% |
22.35% |
HEX | C6 | 9F | AB |
Decimal | 198 | 159 | 171 |
Binary | 11000110 | 10011111 | 10101011 |
Octal | 306 | 237 | 253 |
Examples of css and html codes for elements with #C69FAB color. Also use rgb(198,159,171) instead hex code.
.myTextColor { color: #C69FAB; }
<p style="color:#C69FAB">This sample text font color is #C69FAB.</p>
This text font color is #C69FAB.
.myBgColor { background-color: #C69FAB; }
<div style="background-color:#C69FAB">Inner text</div>
This div background color is #C69FAB.
.myBorderColor { border: 1px solid #C69FAB; }
<div style="border:3px solid #C69FAB">Div</div>
This div border color is #C69FAB.
.myOpacity80 { color: #C69FAB; opacity: 0.8; }
<p style="color:#C69FAB;opacity:0.8;">80%</p>
Text with #C69FAB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C69FAB;}
<p style="text-shadow: 3px 3px 1px #C69FAB">Text here.</p>
This text has shadow with #C69FAB color.
.textShadow {text-shadow: 3px 3px 1px #C69FAB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C69FAB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C69FAB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C69FAB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C69FAB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C69FAB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C69FAB; -webkit-box-shadow: 1px 1px 3px 2px #C69FAB; box-shadow: 1px 1px 3px 2px #C69FAB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C69FAB; -webkit-box-shadow: 1px 1px 3px 2px #C69FAB; box-shadow:1px 1px 3px 2px #C69FAB;">
Div content here</div>
This text has color #C69FAB on black background.
This text has color #C69FAB on white background.
This text has black color on #C69FAB background.
This text has white color on #C69FAB background.