HEX: #C0589F
RGB: (192,88,159)
#C0589F contains mainly red and blue colors. Web safe color of #C0589F is #CC6699 (or #C69).
#C0589F color RGB value is (192,88,159).
RGB: (192,88,159) (75%,35%,62%)
R 192 of 255 = 75%
G 88 of 255 = 35%
B 159 of 255 = 62%
R + G + B ~ 57%. #C0589F is middle color (not dark and not light).
R + G + B =
192 + 88 + 159 = 439 (100%)
R 192 of 439 ~ 43.74%
G 88 of 439 ~ 20.05%
B 159 of 439 ~ 36.22%
#C0589F color CMYK value is (0,54,17,25).
CMYK: (0,54,17,25) C0M54Y17K25 (0%,54%,17%,25%) (0.00/0.54/0.17/0.25)
C0 | 58 | 9F | |
---|---|---|---|
RGB | 192 | 88 | 159 |
HSL | 319° | 45.22% | 54.90% |
HSB/HSV | 319° | 54.17% | 75.29% |
CMYK | 0.00% | 54.17% | 17.19% |
24.71% |
HEX | C0 | 58 | 9F |
Decimal | 192 | 88 | 159 |
Binary | 11000000 | 1011000 | 10011111 |
Octal | 300 | 130 | 237 |
Examples of css and html codes for elements with #C0589F color. Also use rgb(192,88,159) instead hex code.
.myTextColor { color: #C0589F; }
<p style="color:#C0589F">This sample text font color is #C0589F.</p>
This text font color is #C0589F.
.myBgColor { background-color: #C0589F; }
<div style="background-color:#C0589F">Inner text</div>
This div background color is #C0589F.
.myBorderColor { border: 1px solid #C0589F; }
<div style="border:3px solid #C0589F">Div</div>
This div border color is #C0589F.
.myOpacity80 { color: #C0589F; opacity: 0.8; }
<p style="color:#C0589F;opacity:0.8;">80%</p>
Text with #C0589F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C0589F;}
<p style="text-shadow: 3px 3px 1px #C0589F">Text here.</p>
This text has shadow with #C0589F color.
.textShadow {text-shadow: 3px 3px 1px #C0589F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C0589F, 5px 5px 20px red">Text here.</p>
This text has shadow with #C0589F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C0589F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C0589F, Direction=45, Strength=4)">Text</p>
This text has shadow with #C0589F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C0589F; -webkit-box-shadow: 1px 1px 3px 2px #C0589F; box-shadow: 1px 1px 3px 2px #C0589F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C0589F; -webkit-box-shadow: 1px 1px 3px 2px #C0589F; box-shadow:1px 1px 3px 2px #C0589F;">
Div content here</div>
This text has color #C0589F on black background.
This text has color #C0589F on white background.
This text has black color on #C0589F background.
This text has white color on #C0589F background.