HEX: #C779A4
RGB: (199,121,164)
#C779A4 contains mainly red and blue colors. Web safe color of #C779A4 is #CC6699 (or #C69).
#C779A4 color RGB value is (199,121,164).
RGB: (199,121,164) (78%,47%,64%)
R 199 of 255 = 78%
G 121 of 255 = 47%
B 164 of 255 = 64%
R + G + B ~ 63%. #C779A4 is quite light color.
R + G + B =
199 + 121 + 164 = 484 (100%)
R 199 of 484 ~ 41.12%
G 121 of 484 ~ 25%
B 164 of 484 ~ 33.88%
#C779A4 color CMYK value is (0,39,18,22).
CMYK: (0,39,18,22) C0M39Y18K22 (0%,39%,18%,22%) (0.00/0.39/0.18/0.22)
C7 | 79 | A4 | |
---|---|---|---|
RGB | 199 | 121 | 164 |
HSL | 327° | 41.05% | 62.75% |
HSB/HSV | 327° | 39.20% | 78.04% |
CMYK | 0.00% | 39.20% | 17.59% |
21.96% |
HEX | C7 | 79 | A4 |
Decimal | 199 | 121 | 164 |
Binary | 11000111 | 1111001 | 10100100 |
Octal | 307 | 171 | 244 |
Examples of css and html codes for elements with #C779A4 color. Also use rgb(199,121,164) instead hex code.
.myTextColor { color: #C779A4; }
<p style="color:#C779A4">This sample text font color is #C779A4.</p>
This text font color is #C779A4.
.myBgColor { background-color: #C779A4; }
<div style="background-color:#C779A4">Inner text</div>
This div background color is #C779A4.
.myBorderColor { border: 1px solid #C779A4; }
<div style="border:3px solid #C779A4">Div</div>
This div border color is #C779A4.
.myOpacity80 { color: #C779A4; opacity: 0.8; }
<p style="color:#C779A4;opacity:0.8;">80%</p>
Text with #C779A4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C779A4;}
<p style="text-shadow: 3px 3px 1px #C779A4">Text here.</p>
This text has shadow with #C779A4 color.
.textShadow {text-shadow: 3px 3px 1px #C779A4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C779A4, 5px 5px 20px red">Text here.</p>
This text has shadow with #C779A4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C779A4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C779A4, Direction=45, Strength=4)">Text</p>
This text has shadow with #C779A4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C779A4; -webkit-box-shadow: 1px 1px 3px 2px #C779A4; box-shadow: 1px 1px 3px 2px #C779A4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C779A4; -webkit-box-shadow: 1px 1px 3px 2px #C779A4; box-shadow:1px 1px 3px 2px #C779A4;">
Div content here</div>
This text has color #C779A4 on black background.
This text has color #C779A4 on white background.
This text has black color on #C779A4 background.
This text has white color on #C779A4 background.