HEX: #C589AD
RGB: (197,137,173)
#C589AD contains mainly red and blue colors. Web safe color of #C589AD is #CC9999 (or #C99).
#C589AD color RGB value is (197,137,173).
RGB: (197,137,173) (77%,54%,68%)
R 197 of 255 = 77%
G 137 of 255 = 54%
B 173 of 255 = 68%
R + G + B ~ 66%. #C589AD is quite light color.
R + G + B =
197 + 137 + 173 = 507 (100%)
R 197 of 507 ~ 38.86%
G 137 of 507 ~ 27.02%
B 173 of 507 ~ 34.12%
#C589AD color CMYK value is (0,30,12,23).
CMYK: (0,30,12,23) C0M30Y12K23 (0%,30%,12%,23%) (0.00/0.30/0.12/0.23)
C5 | 89 | AD | |
---|---|---|---|
RGB | 197 | 137 | 173 |
HSL | 324° | 34.09% | 65.49% |
HSB/HSV | 324° | 30.46% | 77.25% |
CMYK | 0.00% | 30.46% | 12.18% |
22.75% |
HEX | C5 | 89 | AD |
Decimal | 197 | 137 | 173 |
Binary | 11000101 | 10001001 | 10101101 |
Octal | 305 | 211 | 255 |
Examples of css and html codes for elements with #C589AD color. Also use rgb(197,137,173) instead hex code.
.myTextColor { color: #C589AD; }
<p style="color:#C589AD">This sample text font color is #C589AD.</p>
This text font color is #C589AD.
.myBgColor { background-color: #C589AD; }
<div style="background-color:#C589AD">Inner text</div>
This div background color is #C589AD.
.myBorderColor { border: 1px solid #C589AD; }
<div style="border:3px solid #C589AD">Div</div>
This div border color is #C589AD.
.myOpacity80 { color: #C589AD; opacity: 0.8; }
<p style="color:#C589AD;opacity:0.8;">80%</p>
Text with #C589AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C589AD;}
<p style="text-shadow: 3px 3px 1px #C589AD">Text here.</p>
This text has shadow with #C589AD color.
.textShadow {text-shadow: 3px 3px 1px #C589AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C589AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #C589AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C589AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C589AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #C589AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C589AD; -webkit-box-shadow: 1px 1px 3px 2px #C589AD; box-shadow: 1px 1px 3px 2px #C589AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C589AD; -webkit-box-shadow: 1px 1px 3px 2px #C589AD; box-shadow:1px 1px 3px 2px #C589AD;">
Div content here</div>
This text has color #C589AD on black background.
This text has color #C589AD on white background.
This text has black color on #C589AD background.
This text has white color on #C589AD background.