HEX: #C594AB
RGB: (197,148,171)
#C594AB contains red, green and blue colors in about the same proportion. Web safe color of #C594AB is #CC9999 (or #C99).
#C594AB color RGB value is (197,148,171).
RGB: (197,148,171) (77%,58%,67%)
R 197 of 255 = 77%
G 148 of 255 = 58%
B 171 of 255 = 67%
R + G + B ~ 67%. #C594AB is quite light color.
R + G + B =
197 + 148 + 171 = 516 (100%)
R 197 of 516 ~ 38.18%
G 148 of 516 ~ 28.68%
B 171 of 516 ~ 33.14%
#C594AB color CMYK value is (0,25,13,23).
CMYK: (0,25,13,23) C0M25Y13K23 (0%,25%,13%,23%) (0.00/0.25/0.13/0.23)
C5 | 94 | AB | |
---|---|---|---|
RGB | 197 | 148 | 171 |
HSL | 332° | 29.70% | 67.65% |
HSB/HSV | 332° | 24.87% | 77.25% |
CMYK | 0.00% | 24.87% | 13.20% |
22.75% |
HEX | C5 | 94 | AB |
Decimal | 197 | 148 | 171 |
Binary | 11000101 | 10010100 | 10101011 |
Octal | 305 | 224 | 253 |
Examples of css and html codes for elements with #C594AB color. Also use rgb(197,148,171) instead hex code.
.myTextColor { color: #C594AB; }
<p style="color:#C594AB">This sample text font color is #C594AB.</p>
This text font color is #C594AB.
.myBgColor { background-color: #C594AB; }
<div style="background-color:#C594AB">Inner text</div>
This div background color is #C594AB.
.myBorderColor { border: 1px solid #C594AB; }
<div style="border:3px solid #C594AB">Div</div>
This div border color is #C594AB.
.myOpacity80 { color: #C594AB; opacity: 0.8; }
<p style="color:#C594AB;opacity:0.8;">80%</p>
Text with #C594AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C594AB;}
<p style="text-shadow: 3px 3px 1px #C594AB">Text here.</p>
This text has shadow with #C594AB color.
.textShadow {text-shadow: 3px 3px 1px #C594AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C594AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C594AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C594AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C594AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C594AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C594AB; -webkit-box-shadow: 1px 1px 3px 2px #C594AB; box-shadow: 1px 1px 3px 2px #C594AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C594AB; -webkit-box-shadow: 1px 1px 3px 2px #C594AB; box-shadow:1px 1px 3px 2px #C594AB;">
Div content here</div>
This text has color #C594AB on black background.
This text has color #C594AB on white background.
This text has black color on #C594AB background.
This text has white color on #C594AB background.