HEX: #C8587C
RGB: (200,88,124)
#C8587C contains mainly red color. Web safe color of #C8587C is #CC6666 (or #C66).
#C8587C color RGB value is (200,88,124).
RGB: (200,88,124) (78%,35%,49%)
R 200 of 255 = 78%
G 88 of 255 = 35%
B 124 of 255 = 49%
R + G + B ~ 54%. #C8587C is middle color (not dark and not light).
R + G + B =
200 + 88 + 124 = 412 (100%)
R 200 of 412 ~ 48.54%
G 88 of 412 ~ 21.36%
B 124 of 412 ~ 30.1%
#C8587C color CMYK value is (0,56,38,22).
CMYK: (0,56,38,22) C0M56Y38K22 (0%,56%,38%,22%) (0.00/0.56/0.38/0.22)
C8 | 58 | 7C | |
---|---|---|---|
RGB | 200 | 88 | 124 |
HSL | 341° | 50.45% | 56.47% |
HSB/HSV | 341° | 56.00% | 78.43% |
CMYK | 0.00% | 56.00% | 38.00% |
21.57% |
HEX | C8 | 58 | 7C |
Decimal | 200 | 88 | 124 |
Binary | 11001000 | 1011000 | 1111100 |
Octal | 310 | 130 | 174 |
Examples of css and html codes for elements with #C8587C color. Also use rgb(200,88,124) instead hex code.
.myTextColor { color: #C8587C; }
<p style="color:#C8587C">This sample text font color is #C8587C.</p>
This text font color is #C8587C.
.myBgColor { background-color: #C8587C; }
<div style="background-color:#C8587C">Inner text</div>
This div background color is #C8587C.
.myBorderColor { border: 1px solid #C8587C; }
<div style="border:3px solid #C8587C">Div</div>
This div border color is #C8587C.
.myOpacity80 { color: #C8587C; opacity: 0.8; }
<p style="color:#C8587C;opacity:0.8;">80%</p>
Text with #C8587C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C8587C;}
<p style="text-shadow: 3px 3px 1px #C8587C">Text here.</p>
This text has shadow with #C8587C color.
.textShadow {text-shadow: 3px 3px 1px #C8587C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C8587C, 5px 5px 20px red">Text here.</p>
This text has shadow with #C8587C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C8587C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C8587C, Direction=45, Strength=4)">Text</p>
This text has shadow with #C8587C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C8587C; -webkit-box-shadow: 1px 1px 3px 2px #C8587C; box-shadow: 1px 1px 3px 2px #C8587C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C8587C; -webkit-box-shadow: 1px 1px 3px 2px #C8587C; box-shadow:1px 1px 3px 2px #C8587C;">
Div content here</div>
This text has color #C8587C on black background.
This text has color #C8587C on white background.
This text has black color on #C8587C background.
This text has white color on #C8587C background.