HEX: #C7A4CC
RGB: (199,164,204)
#C7A4CC contains red, green and blue colors in about the same proportion. Web safe color of #C7A4CC is #CC99CC (or #C9C).
#C7A4CC color RGB value is (199,164,204).
RGB: (199,164,204) (78%,64%,80%)
R 199 of 255 = 78%
G 164 of 255 = 64%
B 204 of 255 = 80%
R + G + B ~ 74%. #C7A4CC is quite light color.
R + G + B =
199 + 164 + 204 = 567 (100%)
R 199 of 567 ~ 35.1%
G 164 of 567 ~ 28.92%
B 204 of 567 ~ 35.98%
#C7A4CC color CMYK value is (2,20,0,20).
CMYK: (2,20,0,20) C2M20Y0K20 (2%,20%,0%,20%) (0.02/0.20/0.00/0.20)
C7 | A4 | CC | |
---|---|---|---|
RGB | 199 | 164 | 204 |
HSL | 293° | 28.17% | 72.16% |
HSB/HSV | 293° | 19.61% | 80.00% |
CMYK | 2.45% | 19.61% | 0.00% |
20.00% |
HEX | C7 | A4 | CC |
Decimal | 199 | 164 | 204 |
Binary | 11000111 | 10100100 | 11001100 |
Octal | 307 | 244 | 314 |
Examples of css and html codes for elements with #C7A4CC color. Also use rgb(199,164,204) instead hex code.
.myTextColor { color: #C7A4CC; }
<p style="color:#C7A4CC">This sample text font color is #C7A4CC.</p>
This text font color is #C7A4CC.
.myBgColor { background-color: #C7A4CC; }
<div style="background-color:#C7A4CC">Inner text</div>
This div background color is #C7A4CC.
.myBorderColor { border: 1px solid #C7A4CC; }
<div style="border:3px solid #C7A4CC">Div</div>
This div border color is #C7A4CC.
.myOpacity80 { color: #C7A4CC; opacity: 0.8; }
<p style="color:#C7A4CC;opacity:0.8;">80%</p>
Text with #C7A4CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C7A4CC;}
<p style="text-shadow: 3px 3px 1px #C7A4CC">Text here.</p>
This text has shadow with #C7A4CC color.
.textShadow {text-shadow: 3px 3px 1px #C7A4CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C7A4CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C7A4CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C7A4CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C7A4CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C7A4CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C7A4CC; -webkit-box-shadow: 1px 1px 3px 2px #C7A4CC; box-shadow: 1px 1px 3px 2px #C7A4CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C7A4CC; -webkit-box-shadow: 1px 1px 3px 2px #C7A4CC; box-shadow:1px 1px 3px 2px #C7A4CC;">
Div content here</div>
This text has color #C7A4CC on black background.
This text has color #C7A4CC on white background.
This text has black color on #C7A4CC background.
This text has white color on #C7A4CC background.