HEX: #C87387
RGB: (200,115,135)
#C87387 contains mainly red color. Web safe color of #C87387 is #CC6699 (or #C69).
#C87387 color RGB value is (200,115,135).
RGB: (200,115,135) (78%,45%,53%)
R 200 of 255 = 78%
G 115 of 255 = 45%
B 135 of 255 = 53%
R + G + B ~ 59%. #C87387 is middle color (not dark and not light).
R + G + B =
200 + 115 + 135 = 450 (100%)
R 200 of 450 ~ 44.44%
G 115 of 450 ~ 25.56%
B 135 of 450 ~ 30%
#C87387 color CMYK value is (0,43,33,22).
CMYK: (0,43,33,22) C0M43Y33K22 (0%,43%,33%,22%) (0.00/0.43/0.33/0.22)
C8 | 73 | 87 | |
---|---|---|---|
RGB | 200 | 115 | 135 |
HSL | 346° | 43.59% | 61.76% |
HSB/HSV | 346° | 42.50% | 78.43% |
CMYK | 0.00% | 42.50% | 32.50% |
21.57% |
HEX | C8 | 73 | 87 |
Decimal | 200 | 115 | 135 |
Binary | 11001000 | 1110011 | 10000111 |
Octal | 310 | 163 | 207 |
Examples of css and html codes for elements with #C87387 color. Also use rgb(200,115,135) instead hex code.
.myTextColor { color: #C87387; }
<p style="color:#C87387">This sample text font color is #C87387.</p>
This text font color is #C87387.
.myBgColor { background-color: #C87387; }
<div style="background-color:#C87387">Inner text</div>
This div background color is #C87387.
.myBorderColor { border: 1px solid #C87387; }
<div style="border:3px solid #C87387">Div</div>
This div border color is #C87387.
.myOpacity80 { color: #C87387; opacity: 0.8; }
<p style="color:#C87387;opacity:0.8;">80%</p>
Text with #C87387 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C87387;}
<p style="text-shadow: 3px 3px 1px #C87387">Text here.</p>
This text has shadow with #C87387 color.
.textShadow {text-shadow: 3px 3px 1px #C87387, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C87387, 5px 5px 20px red">Text here.</p>
This text has shadow with #C87387 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C87387, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C87387, Direction=45, Strength=4)">Text</p>
This text has shadow with #C87387 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C87387; -webkit-box-shadow: 1px 1px 3px 2px #C87387; box-shadow: 1px 1px 3px 2px #C87387; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C87387; -webkit-box-shadow: 1px 1px 3px 2px #C87387; box-shadow:1px 1px 3px 2px #C87387;">
Div content here</div>
This text has color #C87387 on black background.
This text has color #C87387 on white background.
This text has black color on #C87387 background.
This text has white color on #C87387 background.