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