HEX: #C7487B
RGB: (199,72,123)
#C7487B contains mainly red color. Web safe color of #C7487B is #CC3366 (or #C36).
#C7487B color RGB value is (199,72,123).
RGB: (199,72,123) (78%,28%,48%)
R 199 of 255 = 78%
G 72 of 255 = 28%
B 123 of 255 = 48%
R + G + B ~ 51%. #C7487B is middle color (not dark and not light).
R + G + B =
199 + 72 + 123 = 394 (100%)
R 199 of 394 ~ 50.51%
G 72 of 394 ~ 18.27%
B 123 of 394 ~ 31.22%
#C7487B color CMYK value is (0,64,38,22).
CMYK: (0,64,38,22) C0M64Y38K22 (0%,64%,38%,22%) (0.00/0.64/0.38/0.22)
C7 | 48 | 7B | |
---|---|---|---|
RGB | 199 | 72 | 123 |
HSL | 336° | 53.14% | 53.14% |
HSB/HSV | 336° | 63.82% | 78.04% |
CMYK | 0.00% | 63.82% | 38.19% |
21.96% |
HEX | C7 | 48 | 7B |
Decimal | 199 | 72 | 123 |
Binary | 11000111 | 1001000 | 1111011 |
Octal | 307 | 110 | 173 |
Examples of css and html codes for elements with #C7487B color. Also use rgb(199,72,123) instead hex code.
.myTextColor { color: #C7487B; }
<p style="color:#C7487B">This sample text font color is #C7487B.</p>
This text font color is #C7487B.
.myBgColor { background-color: #C7487B; }
<div style="background-color:#C7487B">Inner text</div>
This div background color is #C7487B.
.myBorderColor { border: 1px solid #C7487B; }
<div style="border:3px solid #C7487B">Div</div>
This div border color is #C7487B.
.myOpacity80 { color: #C7487B; opacity: 0.8; }
<p style="color:#C7487B;opacity:0.8;">80%</p>
Text with #C7487B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7487B;}
<p style="text-shadow: 3px 3px 1px #C7487B">Text here.</p>
This text has shadow with #C7487B color.
.textShadow {text-shadow: 3px 3px 1px #C7487B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7487B, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7487B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7487B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7487B, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7487B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7487B; -webkit-box-shadow: 1px 1px 3px 2px #C7487B; box-shadow: 1px 1px 3px 2px #C7487B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7487B; -webkit-box-shadow: 1px 1px 3px 2px #C7487B; box-shadow:1px 1px 3px 2px #C7487B;">
Div content here</div>
This text has color #C7487B on black background.
This text has color #C7487B on white background.
This text has black color on #C7487B background.
This text has white color on #C7487B background.