HEX: #C588AC
RGB: (197,136,172)
#C588AC contains mainly red and blue colors. Web safe color of #C588AC is #CC9999 (or #C99).
#C588AC color RGB value is (197,136,172).
RGB: (197,136,172) (77%,53%,67%)
R 197 of 255 = 77%
G 136 of 255 = 53%
B 172 of 255 = 67%
R + G + B ~ 66%. #C588AC is quite light color.
R + G + B =
197 + 136 + 172 = 505 (100%)
R 197 of 505 ~ 39.01%
G 136 of 505 ~ 26.93%
B 172 of 505 ~ 34.06%
#C588AC color CMYK value is (0,31,13,23).
CMYK: (0,31,13,23) C0M31Y13K23 (0%,31%,13%,23%) (0.00/0.31/0.13/0.23)
C5 | 88 | AC | |
---|---|---|---|
RGB | 197 | 136 | 172 |
HSL | 325° | 34.46% | 65.29% |
HSB/HSV | 325° | 30.96% | 77.25% |
CMYK | 0.00% | 30.96% | 12.69% |
22.75% |
HEX | C5 | 88 | AC |
Decimal | 197 | 136 | 172 |
Binary | 11000101 | 10001000 | 10101100 |
Octal | 305 | 210 | 254 |
Examples of css and html codes for elements with #C588AC color. Also use rgb(197,136,172) instead hex code.
.myTextColor { color: #C588AC; }
<p style="color:#C588AC">This sample text font color is #C588AC.</p>
This text font color is #C588AC.
.myBgColor { background-color: #C588AC; }
<div style="background-color:#C588AC">Inner text</div>
This div background color is #C588AC.
.myBorderColor { border: 1px solid #C588AC; }
<div style="border:3px solid #C588AC">Div</div>
This div border color is #C588AC.
.myOpacity80 { color: #C588AC; opacity: 0.8; }
<p style="color:#C588AC;opacity:0.8;">80%</p>
Text with #C588AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C588AC;}
<p style="text-shadow: 3px 3px 1px #C588AC">Text here.</p>
This text has shadow with #C588AC color.
.textShadow {text-shadow: 3px 3px 1px #C588AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C588AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C588AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C588AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C588AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C588AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C588AC; -webkit-box-shadow: 1px 1px 3px 2px #C588AC; box-shadow: 1px 1px 3px 2px #C588AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C588AC; -webkit-box-shadow: 1px 1px 3px 2px #C588AC; box-shadow:1px 1px 3px 2px #C588AC;">
Div content here</div>
This text has color #C588AC on black background.
This text has color #C588AC on white background.
This text has black color on #C588AC background.
This text has white color on #C588AC background.