HEX: #C688AB
RGB: (198,136,171)
#C688AB contains mainly red and blue colors. Web safe color of #C688AB is #CC9999 (or #C99).
#C688AB color RGB value is (198,136,171).
RGB: (198,136,171) (78%,53%,67%)
R 198 of 255 = 78%
G 136 of 255 = 53%
B 171 of 255 = 67%
R + G + B ~ 66%. #C688AB is quite light color.
R + G + B =
198 + 136 + 171 = 505 (100%)
R 198 of 505 ~ 39.21%
G 136 of 505 ~ 26.93%
B 171 of 505 ~ 33.86%
#C688AB color CMYK value is (0,31,14,22).
CMYK: (0,31,14,22) C0M31Y14K22 (0%,31%,14%,22%) (0.00/0.31/0.14/0.22)
C6 | 88 | AB | |
---|---|---|---|
RGB | 198 | 136 | 171 |
HSL | 326° | 35.23% | 65.49% |
HSB/HSV | 326° | 31.31% | 77.65% |
CMYK | 0.00% | 31.31% | 13.64% |
22.35% |
HEX | C6 | 88 | AB |
Decimal | 198 | 136 | 171 |
Binary | 11000110 | 10001000 | 10101011 |
Octal | 306 | 210 | 253 |
Examples of css and html codes for elements with #C688AB color. Also use rgb(198,136,171) instead hex code.
.myTextColor { color: #C688AB; }
<p style="color:#C688AB">This sample text font color is #C688AB.</p>
This text font color is #C688AB.
.myBgColor { background-color: #C688AB; }
<div style="background-color:#C688AB">Inner text</div>
This div background color is #C688AB.
.myBorderColor { border: 1px solid #C688AB; }
<div style="border:3px solid #C688AB">Div</div>
This div border color is #C688AB.
.myOpacity80 { color: #C688AB; opacity: 0.8; }
<p style="color:#C688AB;opacity:0.8;">80%</p>
Text with #C688AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C688AB;}
<p style="text-shadow: 3px 3px 1px #C688AB">Text here.</p>
This text has shadow with #C688AB color.
.textShadow {text-shadow: 3px 3px 1px #C688AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C688AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C688AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C688AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C688AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C688AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C688AB; -webkit-box-shadow: 1px 1px 3px 2px #C688AB; box-shadow: 1px 1px 3px 2px #C688AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C688AB; -webkit-box-shadow: 1px 1px 3px 2px #C688AB; box-shadow:1px 1px 3px 2px #C688AB;">
Div content here</div>
This text has color #C688AB on black background.
This text has color #C688AB on white background.
This text has black color on #C688AB background.
This text has white color on #C688AB background.