HEX: #C5778D
RGB: (197,119,141)
#C5778D contains mainly red and blue colors. Web safe color of #C5778D is #CC6699 (or #C69).
#C5778D color RGB value is (197,119,141).
RGB: (197,119,141) (77%,47%,55%)
R 197 of 255 = 77%
G 119 of 255 = 47%
B 141 of 255 = 55%
R + G + B ~ 60%. #C5778D is middle color (not dark and not light).
R + G + B =
197 + 119 + 141 = 457 (100%)
R 197 of 457 ~ 43.11%
G 119 of 457 ~ 26.04%
B 141 of 457 ~ 30.85%
#C5778D color CMYK value is (0,40,28,23).
CMYK: (0,40,28,23) C0M40Y28K23 (0%,40%,28%,23%) (0.00/0.40/0.28/0.23)
C5 | 77 | 8D | |
---|---|---|---|
RGB | 197 | 119 | 141 |
HSL | 343° | 40.21% | 61.96% |
HSB/HSV | 343° | 39.59% | 77.25% |
CMYK | 0.00% | 39.59% | 28.43% |
22.75% |
HEX | C5 | 77 | 8D |
Decimal | 197 | 119 | 141 |
Binary | 11000101 | 1110111 | 10001101 |
Octal | 305 | 167 | 215 |
Examples of css and html codes for elements with #C5778D color. Also use rgb(197,119,141) instead hex code.
.myTextColor { color: #C5778D; }
<p style="color:#C5778D">This sample text font color is #C5778D.</p>
This text font color is #C5778D.
.myBgColor { background-color: #C5778D; }
<div style="background-color:#C5778D">Inner text</div>
This div background color is #C5778D.
.myBorderColor { border: 1px solid #C5778D; }
<div style="border:3px solid #C5778D">Div</div>
This div border color is #C5778D.
.myOpacity80 { color: #C5778D; opacity: 0.8; }
<p style="color:#C5778D;opacity:0.8;">80%</p>
Text with #C5778D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C5778D;}
<p style="text-shadow: 3px 3px 1px #C5778D">Text here.</p>
This text has shadow with #C5778D color.
.textShadow {text-shadow: 3px 3px 1px #C5778D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C5778D, 5px 5px 20px red">Text here.</p>
This text has shadow with #C5778D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C5778D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C5778D, Direction=45, Strength=4)">Text</p>
This text has shadow with #C5778D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C5778D; -webkit-box-shadow: 1px 1px 3px 2px #C5778D; box-shadow: 1px 1px 3px 2px #C5778D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C5778D; -webkit-box-shadow: 1px 1px 3px 2px #C5778D; box-shadow:1px 1px 3px 2px #C5778D;">
Div content here</div>
This text has color #C5778D on black background.
This text has color #C5778D on white background.
This text has black color on #C5778D background.
This text has white color on #C5778D background.