HEX: #C488AB
RGB: (196,136,171)
#C488AB contains mainly red and blue colors. Web safe color of #C488AB is #CC9999 (or #C99).
#C488AB color RGB value is (196,136,171).
RGB: (196,136,171) (77%,53%,67%)
R 196 of 255 = 77%
G 136 of 255 = 53%
B 171 of 255 = 67%
R + G + B ~ 66%. #C488AB is quite light color.
R + G + B =
196 + 136 + 171 = 503 (100%)
R 196 of 503 ~ 38.97%
G 136 of 503 ~ 27.04%
B 171 of 503 ~ 34%
#C488AB color CMYK value is (0,31,13,23).
CMYK: (0,31,13,23) C0M31Y13K23 (0%,31%,13%,23%) (0.00/0.31/0.13/0.23)
C4 | 88 | AB | |
---|---|---|---|
RGB | 196 | 136 | 171 |
HSL | 325° | 33.71% | 65.10% |
HSB/HSV | 325° | 30.61% | 76.86% |
CMYK | 0.00% | 30.61% | 12.76% |
23.14% |
HEX | C4 | 88 | AB |
Decimal | 196 | 136 | 171 |
Binary | 11000100 | 10001000 | 10101011 |
Octal | 304 | 210 | 253 |
Examples of css and html codes for elements with #C488AB color. Also use rgb(196,136,171) instead hex code.
.myTextColor { color: #C488AB; }
<p style="color:#C488AB">This sample text font color is #C488AB.</p>
This text font color is #C488AB.
.myBgColor { background-color: #C488AB; }
<div style="background-color:#C488AB">Inner text</div>
This div background color is #C488AB.
.myBorderColor { border: 1px solid #C488AB; }
<div style="border:3px solid #C488AB">Div</div>
This div border color is #C488AB.
.myOpacity80 { color: #C488AB; opacity: 0.8; }
<p style="color:#C488AB;opacity:0.8;">80%</p>
Text with #C488AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C488AB;}
<p style="text-shadow: 3px 3px 1px #C488AB">Text here.</p>
This text has shadow with #C488AB color.
.textShadow {text-shadow: 3px 3px 1px #C488AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C488AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C488AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C488AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C488AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C488AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C488AB; -webkit-box-shadow: 1px 1px 3px 2px #C488AB; box-shadow: 1px 1px 3px 2px #C488AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C488AB; -webkit-box-shadow: 1px 1px 3px 2px #C488AB; box-shadow:1px 1px 3px 2px #C488AB;">
Div content here</div>
This text has color #C488AB on black background.
This text has color #C488AB on white background.
This text has black color on #C488AB background.
This text has white color on #C488AB background.