HEX: #C77593
RGB: (199,117,147)
#C77593 contains mainly red and blue colors. Web safe color of #C77593 is #CC6699 (or #C69).
#C77593 color RGB value is (199,117,147).
RGB: (199,117,147) (78%,46%,58%)
R 199 of 255 = 78%
G 117 of 255 = 46%
B 147 of 255 = 58%
R + G + B ~ 61%. #C77593 is quite light color.
R + G + B =
199 + 117 + 147 = 463 (100%)
R 199 of 463 ~ 42.98%
G 117 of 463 ~ 25.27%
B 147 of 463 ~ 31.75%
#C77593 color CMYK value is (0,41,26,22).
CMYK: (0,41,26,22) C0M41Y26K22 (0%,41%,26%,22%) (0.00/0.41/0.26/0.22)
C7 | 75 | 93 | |
---|---|---|---|
RGB | 199 | 117 | 147 |
HSL | 338° | 42.27% | 61.96% |
HSB/HSV | 338° | 41.21% | 78.04% |
CMYK | 0.00% | 41.21% | 26.13% |
21.96% |
HEX | C7 | 75 | 93 |
Decimal | 199 | 117 | 147 |
Binary | 11000111 | 1110101 | 10010011 |
Octal | 307 | 165 | 223 |
Examples of css and html codes for elements with #C77593 color. Also use rgb(199,117,147) instead hex code.
.myTextColor { color: #C77593; }
<p style="color:#C77593">This sample text font color is #C77593.</p>
This text font color is #C77593.
.myBgColor { background-color: #C77593; }
<div style="background-color:#C77593">Inner text</div>
This div background color is #C77593.
.myBorderColor { border: 1px solid #C77593; }
<div style="border:3px solid #C77593">Div</div>
This div border color is #C77593.
.myOpacity80 { color: #C77593; opacity: 0.8; }
<p style="color:#C77593;opacity:0.8;">80%</p>
Text with #C77593 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C77593;}
<p style="text-shadow: 3px 3px 1px #C77593">Text here.</p>
This text has shadow with #C77593 color.
.textShadow {text-shadow: 3px 3px 1px #C77593, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C77593, 5px 5px 20px red">Text here.</p>
This text has shadow with #C77593 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C77593, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C77593, Direction=45, Strength=4)">Text</p>
This text has shadow with #C77593 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C77593; -webkit-box-shadow: 1px 1px 3px 2px #C77593; box-shadow: 1px 1px 3px 2px #C77593; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C77593; -webkit-box-shadow: 1px 1px 3px 2px #C77593; box-shadow:1px 1px 3px 2px #C77593;">
Div content here</div>
This text has color #C77593 on black background.
This text has color #C77593 on white background.
This text has black color on #C77593 background.
This text has white color on #C77593 background.