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