HEX: #C993AC
RGB: (201,147,172)
#C993AC contains red, green and blue colors in about the same proportion. Web safe color of #C993AC is #CC9999 (or #C99).
#C993AC color RGB value is (201,147,172).
RGB: (201,147,172) (79%,58%,67%)
R 201 of 255 = 79%
G 147 of 255 = 58%
B 172 of 255 = 67%
R + G + B ~ 68%. #C993AC is quite light color.
R + G + B =
201 + 147 + 172 = 520 (100%)
R 201 of 520 ~ 38.65%
G 147 of 520 ~ 28.27%
B 172 of 520 ~ 33.08%
#C993AC color CMYK value is (0,27,14,21).
CMYK: (0,27,14,21) C0M27Y14K21 (0%,27%,14%,21%) (0.00/0.27/0.14/0.21)
C9 | 93 | AC | |
---|---|---|---|
RGB | 201 | 147 | 172 |
HSL | 332° | 33.33% | 68.24% |
HSB/HSV | 332° | 26.87% | 78.82% |
CMYK | 0.00% | 26.87% | 14.43% |
21.18% |
HEX | C9 | 93 | AC |
Decimal | 201 | 147 | 172 |
Binary | 11001001 | 10010011 | 10101100 |
Octal | 311 | 223 | 254 |
Examples of css and html codes for elements with #C993AC color. Also use rgb(201,147,172) instead hex code.
.myTextColor { color: #C993AC; }
<p style="color:#C993AC">This sample text font color is #C993AC.</p>
This text font color is #C993AC.
.myBgColor { background-color: #C993AC; }
<div style="background-color:#C993AC">Inner text</div>
This div background color is #C993AC.
.myBorderColor { border: 1px solid #C993AC; }
<div style="border:3px solid #C993AC">Div</div>
This div border color is #C993AC.
.myOpacity80 { color: #C993AC; opacity: 0.8; }
<p style="color:#C993AC;opacity:0.8;">80%</p>
Text with #C993AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C993AC;}
<p style="text-shadow: 3px 3px 1px #C993AC">Text here.</p>
This text has shadow with #C993AC color.
.textShadow {text-shadow: 3px 3px 1px #C993AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C993AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #C993AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C993AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C993AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #C993AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C993AC; -webkit-box-shadow: 1px 1px 3px 2px #C993AC; box-shadow: 1px 1px 3px 2px #C993AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C993AC; -webkit-box-shadow: 1px 1px 3px 2px #C993AC; box-shadow:1px 1px 3px 2px #C993AC;">
Div content here</div>
This text has color #C993AC on black background.
This text has color #C993AC on white background.
This text has black color on #C993AC background.
This text has white color on #C993AC background.