HEX: #C592AA
RGB: (197,146,170)
#C592AA contains red, green and blue colors in about the same proportion. Web safe color of #C592AA is #CC9999 (or #C99).
#C592AA color RGB value is (197,146,170).
RGB: (197,146,170) (77%,57%,67%)
R 197 of 255 = 77%
G 146 of 255 = 57%
B 170 of 255 = 67%
R + G + B ~ 67%. #C592AA is quite light color.
R + G + B =
197 + 146 + 170 = 513 (100%)
R 197 of 513 ~ 38.4%
G 146 of 513 ~ 28.46%
B 170 of 513 ~ 33.14%
#C592AA color CMYK value is (0,26,14,23).
CMYK: (0,26,14,23) C0M26Y14K23 (0%,26%,14%,23%) (0.00/0.26/0.14/0.23)
C5 | 92 | AA | |
---|---|---|---|
RGB | 197 | 146 | 170 |
HSL | 332° | 30.54% | 67.25% |
HSB/HSV | 332° | 25.89% | 77.25% |
CMYK | 0.00% | 25.89% | 13.71% |
22.75% |
HEX | C5 | 92 | AA |
Decimal | 197 | 146 | 170 |
Binary | 11000101 | 10010010 | 10101010 |
Octal | 305 | 222 | 252 |
Examples of css and html codes for elements with #C592AA color. Also use rgb(197,146,170) instead hex code.
.myTextColor { color: #C592AA; }
<p style="color:#C592AA">This sample text font color is #C592AA.</p>
This text font color is #C592AA.
.myBgColor { background-color: #C592AA; }
<div style="background-color:#C592AA">Inner text</div>
This div background color is #C592AA.
.myBorderColor { border: 1px solid #C592AA; }
<div style="border:3px solid #C592AA">Div</div>
This div border color is #C592AA.
.myOpacity80 { color: #C592AA; opacity: 0.8; }
<p style="color:#C592AA;opacity:0.8;">80%</p>
Text with #C592AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C592AA;}
<p style="text-shadow: 3px 3px 1px #C592AA">Text here.</p>
This text has shadow with #C592AA color.
.textShadow {text-shadow: 3px 3px 1px #C592AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C592AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #C592AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C592AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C592AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #C592AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C592AA; -webkit-box-shadow: 1px 1px 3px 2px #C592AA; box-shadow: 1px 1px 3px 2px #C592AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C592AA; -webkit-box-shadow: 1px 1px 3px 2px #C592AA; box-shadow:1px 1px 3px 2px #C592AA;">
Div content here</div>
This text has color #C592AA on black background.
This text has color #C592AA on white background.
This text has black color on #C592AA background.
This text has white color on #C592AA background.