HEX: #C87588
RGB: (200,117,136)
#C87588 contains mainly red color. Web safe color of #C87588 is #CC6699 (or #C69).
#C87588 color RGB value is (200,117,136).
RGB: (200,117,136) (78%,46%,53%)
R 200 of 255 = 78%
G 117 of 255 = 46%
B 136 of 255 = 53%
R + G + B ~ 59%. #C87588 is middle color (not dark and not light).
R + G + B =
200 + 117 + 136 = 453 (100%)
R 200 of 453 ~ 44.15%
G 117 of 453 ~ 25.83%
B 136 of 453 ~ 30.02%
#C87588 color CMYK value is (0,42,32,22).
CMYK: (0,42,32,22) C0M42Y32K22 (0%,42%,32%,22%) (0.00/0.42/0.32/0.22)
C8 | 75 | 88 | |
---|---|---|---|
RGB | 200 | 117 | 136 |
HSL | 346° | 43.01% | 62.16% |
HSB/HSV | 346° | 41.50% | 78.43% |
CMYK | 0.00% | 41.50% | 32.00% |
21.57% |
HEX | C8 | 75 | 88 |
Decimal | 200 | 117 | 136 |
Binary | 11001000 | 1110101 | 10001000 |
Octal | 310 | 165 | 210 |
Examples of css and html codes for elements with #C87588 color. Also use rgb(200,117,136) instead hex code.
.myTextColor { color: #C87588; }
<p style="color:#C87588">This sample text font color is #C87588.</p>
This text font color is #C87588.
.myBgColor { background-color: #C87588; }
<div style="background-color:#C87588">Inner text</div>
This div background color is #C87588.
.myBorderColor { border: 1px solid #C87588; }
<div style="border:3px solid #C87588">Div</div>
This div border color is #C87588.
.myOpacity80 { color: #C87588; opacity: 0.8; }
<p style="color:#C87588;opacity:0.8;">80%</p>
Text with #C87588 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C87588;}
<p style="text-shadow: 3px 3px 1px #C87588">Text here.</p>
This text has shadow with #C87588 color.
.textShadow {text-shadow: 3px 3px 1px #C87588, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C87588, 5px 5px 20px red">Text here.</p>
This text has shadow with #C87588 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C87588, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C87588, Direction=45, Strength=4)">Text</p>
This text has shadow with #C87588 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C87588; -webkit-box-shadow: 1px 1px 3px 2px #C87588; box-shadow: 1px 1px 3px 2px #C87588; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C87588; -webkit-box-shadow: 1px 1px 3px 2px #C87588; box-shadow:1px 1px 3px 2px #C87588;">
Div content here</div>
This text has color #C87588 on black background.
This text has color #C87588 on white background.
This text has black color on #C87588 background.
This text has white color on #C87588 background.